我只是將我的codeigniter項目部署到託管服務器。我有這個問題。Codeigniter部署index.php顯示404錯誤
通過右邊的鏈接應該在這方面的工作 - >http://test.com/quiz/test
當我部署我需要密鑰此則可以正常工作。 http://test.com/quiz/index.php/test
這是我的服務器層次
public_html
|-css
|-js
|-index.php
|-quiz
|---application
|---system
|---index.php
|---....
|---.htaccess
這是我的htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
是正確的嗎?
確認mod_rewrite已在服務器上啓用了,那麼你可能只需要重新啓動服務器 –