2

我以前做过,就像一行代码。现在,当我查找它时,只需将 index.php 重定向到/.htaccess 中的 root ( ) 就只有 5-10 行。

最好的方法是什么?

4

2 回答 2

4

这段代码对我有用

RewriteCond %{THE_REQUEST} ^.*/index.php 
RewriteRule ^(.*)index.php$ /$1 [R=301,L] 
于 2013-04-17T13:08:19.663 回答
1

您正在寻找的可能是这样的:

Redirect 301 /index.php http://www.yoursite.com/folder/
于 2013-04-17T13:15:18.870 回答