I am using Rester to make RESTful APIs from my MySQL databases.
https://github.com/moddity/Rester
Everything is working fine on localhost, but when I upload it to my GoDaddy hosting account and I try to visit the rewritten urls, I get the "no input file specified" error. My .htaccess file contains:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
Does anybody have a solution for this?