php – Codeigniter – 解決 no input file specified 問題
若用虛擬主機時,首頁之外的網址出現了 ” no input file specified “,那就把 .htaccess 修改成
1 2 3 4 5 6 7 |
RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L] |
參考:http://stackoverflow.com/questions/6118740/codeigniter-no-input-file-specified