我需要将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
这不应该发生。
答案 0 :(得分:2)