I work with my db with following .htaccess conf: Options All -Indexes
RewriteEngine On
RewriteRule ^([-a-zA-Z0-9]+)$ index.php?route=$1
When I upload to online server the navigation not works shows 404 not found and work well.
Options All -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Now I change to EXE but when I click on navigation it pops up save dialog box
help me how I fix that.

instead of redirect to home show save dialog
RewriteEngine On
RewriteRule ^([-a-zA-Z0-9]+)$ index.php?route=$1
When I upload to online server the navigation not works shows 404 not found and work well.
Options All -Indexes
RewriteEngine On
Redirect Trailing Slashes…
RewriteRule ^([-a-zA-Z0-9]+)$ index.php?route=$1Handle Front Controller…
RewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Now I change to EXE but when I click on navigation it pops up save dialog box

instead of redirect to home show save dialog
Last edited: