将domain.com/index.php/xyz重定向到domain.com/xyz

时间:2013-02-27 23:54:02

标签: redirect

您好我使用了以下index.php重定向到主页(及其工作)

RewriteCond%{THE_REQUEST} ^。 /index.php \ HTTP / RewriteRule ^(。)index.php $ / $ 1 [R = 301,L]

我希望它的子页面也可以重定向示例index.php / xyz到home / xyz

请帮我修改上面的代码

1 个答案:

答案 0 :(得分:0)

在规则的最后添加:

RewriteRule ^ index.php /(.*) $ 1 [NS,NC,L,R = 301]