我以前这样做过,它就像一行代码。现在,当我查找它时,发现在.htaccess中将index.php重定向到根目录(/)只需要5-10行代码。
做这件事最好的方法是什么?
发布于 2013-04-17 21:08:20
这段代码适用于我
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L] 发布于 2013-04-17 21:15:19
它可能是你正在寻找的东西:
Redirect 301 /index.php http://www.yoursite.com/folder/https://stackoverflow.com/questions/16060876
复制相似问题