我已經安裝codeigniter,我想從url刪除index.php當我訪問localhost/aplication/index.php。我已經設定取消註釋mod_rewrite.so從httpd.conf中連接這是我的.htaccess文件:無法刪除index.php與.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
的更迭,當我存取權限從本地主機/ aplication/index.php文件/數據/用戶/ 12而與此網址url localhost/aplication/data/users/12。
我該如何解決這個問題?
請問您的虛擬主機配置[允許覆蓋](http://httpd.apache.org/docs/2.2/mod/core.html#AllowOverride)? – complex857