我已經在PHP MVC中創建了一個應用程序,並且http請求類似於 domain.com/index.php?controller/action,我想刪除index.php?和最終的url看起來像http://domain.com/controller/action。 任何幫助將高度讚賞刪除「index.php?」從http://domain.com/index.php?controller/action
目前我的.htaccess文件看起來像下面
RewriteEngine On
RewriteBase/
<IfModule mod_rewrite.c>
# Removes index.php from ExpressionEngine URLs
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
它僅刪除index.php文件和URL成爲http://domain.com/?controller/action, 我想,「?」從網址關閉。
可能重複http://stackoverflow.com/questions/4365129/htaccess-remove-index-php-from-url&還有更多。 – Rikesh
研究之前問問題 –
但它並沒有刪除「?」符號,我想刪除index.php以及「?」。我試過這個:^(。*)$ /index.php?/$1 [L]但顯示錯誤。 –