LuFFy
LuFFy

Reputation: 9297

.htaccess Settings (Rewrite URL Rule) working on Localhost, But Not on Live Site

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

Answers (1)

Meabed
Meabed

Reputation: 3928

Enable Mod Rewrite

LoadModule rewrite_module modules/mod_rewrite.so

and

AllowOverride All 

in your apache configs

Upvotes: 3

Related Questions