0

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

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

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

请帮我如何修改上面的代码

4

1 回答 1

0

在规则的末尾添加:

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

于 2013-02-28T00:02:47.750 回答