.htaccess设置(重写URL规则)在Localhost上工作,但不在实际站点上

时间:2013-03-19 12:50:57

标签: .htaccess magento url-rewriting magento-1.7

我的.htaccess重写规则如下:

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]

这些设置在localhost上正常运行,但它不适用于实时网站。任何解决方案?

1 个答案:

答案 0 :(得分:3)

启用Mod Rewrite

LoadModule rewrite_module modules/mod_rewrite.so

AllowOverride All 

在你的apache配置中