2013-04-17 134 views
2

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

这样做的最好方法是什么?

+0

http://stackoverflow.com/questions/9369917/htaccess-redirect- index-php-to-root-including-subdomains – djb

回答

4

此代码对我的作品

RewriteCond %{THE_REQUEST} ^.*/index.php 
RewriteRule ^(.*)index.php$ /$1 [R=301,L] 
+0

谢谢!像魅力一样工作 – ramo

1

可能它是这样的,你正在寻找:

Redirect 301 /index.php http://www.yoursite.com/folder/ 
相关问题