可能重複:
how to remove index.php from url in codeigniter ?如何從笨URL刪除的index.php
我想從笨URL刪除的index.php。我創建了.htaccess文件並在其上放置了下面的代碼(如CodeIgniter網站上的代碼所示),但是我無法訪問本地主機上的任何東西,如果將代碼放在.htaccess文件中,我會得到錯誤「未找到」。
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
我的URL看起來像localhost/test/project/index.php