We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've put Ozuo app on "hostinger" server, and application didn't start, but instead got this error: No input file specified.
No input file specified.
RewriteRule could not find index.php, i guess. Adding RewriteBase / didn't help, setting cgi.fix_pathinfo=1 didn't help.
index.php
RewriteBase /
cgi.fix_pathinfo
1
I changed this RewriteRule .* index.php/$0 [L] to this RewriteRule .* index.php?/$0 [L] and it worked.
RewriteRule .* index.php/$0 [L]
RewriteRule .* index.php?/$0 [L]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've put Ozuo app on "hostinger" server, and application didn't start, but instead got this error:
No input file specified.
RewriteRule could not find
index.php
, i guess. AddingRewriteBase /
didn't help, settingcgi.fix_pathinfo
=1
didn't help.I changed this
RewriteRule .* index.php/$0 [L]
to this
RewriteRule .* index.php?/$0 [L]
and it worked.
The text was updated successfully, but these errors were encountered: