目前我的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,而不是更深层的文件夹? 非常感谢。
答案 0 :(得分:8)
RewriteRule ^index.php /en/home [R=301]