标签: apache .htaccess mod-rewrite
我有这样的网址:
http://www.example.com/index.php/shop/productname
或者像这样
http://www.example.com/index.php/productname
如何将所有这些页面重定向到拥有,但没有index.php?
我想看看
http://www.example.com/shop/productname和http://www.example.com/productname
答案 0 :(得分:0)
这是您需要的: RewriteRule ^index\.php/(.+)$ /$1 [R=301,L]
RewriteRule ^index\.php/(.+)$ /$1 [R=301,L]