我正在部署我們在現場服務器中創建的Web應用程序,但是後來在解決如何刪除index.php時遇到了麻煩。 我已閱讀了幾個關於如何在codeigniter應用程序中刪除index.php的博客。無法刪除CodeIgniter應用程序中的index.php
我有我的.htaccess
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
,並在我的config.php
$配置[ 'index_page'] = '' 試過這個設置;
$ config ['uri_protocol'] ='REQUEST_URI';
但我仍然無法弄清楚如何刪除它。我需要編輯Apache httpd.conf中的內容嗎?
謝謝!
你有mod_rewrite啓用你的apache服務器? – Endophage