1
我正在使用Rester從我的MySQL數據庫中創建RESTful API。Php和htaccess錯誤 - 「沒有指定輸入文件」
https://github.com/moddity/Rester
一切都在本地主機工作正常,但是當我把它上傳到我的GoDaddy的託管帳戶,我嘗試訪問的URL重寫,我得到了「沒有輸入文件中指定的」錯誤。我的.htaccess文件包含:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
有沒有人有解決方案?
已經嘗試過,但沒有工作。 – 2014-12-06 13:06:02
在這裏看看http://stackoverflow.com/questions/18186058/no-input-file-specified-godaddy – 2014-12-06 13:07:46
我嘗試了一切,但沒有任何工作 – 2014-12-06 13:15:22