1

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?

1 Answer 1

1

Give it a try, Go to Godaddy Webroot and make an php5 ini file with the following Rules,

cgi.fix_pathinfo = 1
Sign up to request clarification or add additional context in comments.

1 Comment

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.