如何通过.htaccess正确地将index.php重定向到另一个页面?

时间:2011-03-05 18:30:26

标签: apache .htaccess mod-rewrite redirect indexing

目前我的htaccess文件包含此规则,将website.org/index.php重定向到website.org/en/home

RewriteRule index.php /en/home [R=301]

但是,目前更深层文件夹中的其他index.php页面也会重定向!例如website.org/folder/index.php重定向到website.org/en/home

如何将该规则专门应用于root,而不是更深层的文件夹? 非常感谢。

1 个答案:

答案 0 :(得分:8)

RewriteRule ^index.php /en/home [R=301]