這就是我的.htaccess
的樣子。 .htaccess
位於/www/scripts
目錄中,該目錄是代碼單元的system
目錄的父目錄,並且還包含index.php
。我在我的Apache 2.2.x中啓用mod_rewrite
。這是在Ubuntu 9.10服務器上。CodeIgniter - 如何從URL中隱藏index.php
我跟着這個link,但它不起作用。有什麼我需要在apache2中做,任何特定的配置,以便這個工程?
RewriteEngine on
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
當你訪問你的網站沒有的index.php會發生什麼?你會得到什麼錯誤? – Galen 2010-05-05 03:48:11
如果你只是啓用mod_rewrite,那麼你可能只需要重啓你的服務器。 – kurige 2010-05-05 04:08:47