我的工作在工作網站上,並recenctly通過svn我的LocalServer移動它,這樣我可以在家裏工作...代碼Ignighter - 404的表現,但正確的響應
的設置就行,沒有專業...但代碼點火器發送404 Not Found頁面以及正確的響應...
例如,我可以加載'localhost/home',它會觸發我的控制器,我得到正確的視圖,但CI也發送404在頁面的標題.... !! 這也發生在我的js文件...
我可以迫使它發送「200 OK」,但在每一頁上的接縫傻這樣做..
有沒有人來翻過這個問題... ?
我正在使用; 代碼Ignighter:2.1.0
的Apache:2.0.63
PHP:5.1.6
這是我的.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|css|js)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
#1裁切掉從我的htaccess的IfModule mod_rewrite.c但我有他們真的 – 2012-02-03 09:19:55
您使用的是wiredesignz HMVC擴展? – 2012-02-03 20:09:56