【发布时间】:2013-03-06 08:11:10
【问题描述】:
我想将http://example.com/index.php 重定向到http://example.com。我尝试关注但没有成功。
RewriteRule ^index\.php$ /
【问题讨论】:
-
请比“没用”更具体。反而发生了什么? Apache 错误日志中是否记录了任何内容?
标签: .htaccess
我想将http://example.com/index.php 重定向到http://example.com。我尝试关注但没有成功。
RewriteRule ^index\.php$ /
【问题讨论】:
标签: .htaccess
将其标记为显式重定向
RewriteRule ^index\.php$ / [R=301]
【讨论】: