我的應用程序的URL是笨重寫URL:從URL
http://localhost/myapp/admin/index.php/projects
,我希望把它改寫爲
http://localhost/myapp/admin/projects
我跟隨的用戶指南
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
爲這但不適合我。
RewriteEngine敘述^(指數\ .PHP |圖片|機器人\ .TXT)! 重寫規則^(。*)$ /index.php/$1 [L] –
你從刪除'index.php'配置文件中的index_page變量也是如此? –
是的,我已經刪除index.php –