0

我需要将 index.php 重定向到我的根文件夹而不影响其他页面。我试过这个:

RewriteRule ^index\.php$ http://example.com/ [NC,R]

这个工作解决了以下条件下的问题

http://example.com/index.php但是当我访问诸如

http://example.com/index.php?option=users, 它显示为

http://example.com/?option=users这不应该发生。

4

1 回答 1

2

根据文档,您需要在以下内容之前添加此行RewriteRule

RewriteCond %{QUERY_STRING} ^$

这确保仅当查询字符串为空时才应用规则。

于 2013-08-07T12:39:10.030 回答