2013-08-07 103 views
0

我需要將index.php重定向到我的根文件夾,而不影響其他頁面。我曾經嘗試這樣做:將index.php重定向到根目錄而不影響其他url

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這不應該發生。

回答

2

按照documentation,需要RewriteRule之前添加此行:

RewriteCond %{QUERY_STRING} ^$ 

這可以確保如果查詢字符串是空的規則僅適用。

+0

按預期工作。謝謝 –

相關問題