您好我使用了以下index.php重定向到主页(及其工作)
RewriteCond%{THE_REQUEST} ^。 /index.php \ HTTP / RewriteRule ^(。)index.php $ / $ 1 [R = 301,L]
我希望它的子页面也可以重定向示例index.php / xyz到home / xyz
请帮我修改上面的代码
答案 0 :(得分:0)
在规则的最后添加:
RewriteRule ^ index.php /(.*) $ 1 [NS,NC,L,R = 301]