我的.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上正常运行,但它不适用于实时网站。任何解决方案?
答案 0 :(得分:3)
启用Mod Rewrite
LoadModule rewrite_module modules/mod_rewrite.so
和
AllowOverride All
在你的apache配置中