2013-04-28 89 views
0

我用WAMP運行Win 8 64x。我有一個CodeIgniter項目(v2.13),並且我已經閱讀了關於如何從URL中獲取/index.php/的文檔和在線教程,以便我的URL看起來像http://127.0.0.1/petclub/home/index用WAMP和URL重寫CodeIgniter 404錯誤

但它不工作。我得到了一個404錯誤,並在頁面上的消息:

Not Found 
The requested URL /petclub/index.php/home/index was not found on this server. 

這是我目前在我的.htaccess文件:

RewriteEngine On 
RewriteBase /petclub/ 
RewriteCond %{REQUEST_URI} ^system.* 
RewriteRule ^(.*)$ /index.php/$1 [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php/$1 [L] 

我在做什麼錯?我試過所有的建議,而且他們都沒有爲我工作。

謝謝

回答

0

你有一個家庭控制器?

在yout home controller中有一個稱爲index的方法嗎?

你需要這兩個才能工作