Reputation: 9297
My .htaccess Rewrite Rules are as follows:
RewriteCond %{REQUEST_URI} ^/eshop/$
RewriteRule ^(.*)$ %{REQUEST_URI}index.php/eshop-new-home/ [R,L]
RewriteCond %{REQUEST_URI} ^/eshop/index.php/$
RewriteRule ^(.*)$ %{REQUEST_URI}eshop-new-home/ [R,L]
These settings works properly on localhost, But its not working on live website. Any Solutions?
Upvotes: 0
Views: 1729
Reputation: 3928
Enable Mod Rewrite
LoadModule rewrite_module modules/mod_rewrite.so
and
AllowOverride All
in your apache configs
Upvotes: 3