ouzo
ouzo copied to clipboard
FIY: .htaccess not set correctly for some servers.
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. Adding RewriteBase / didn't help, setting cgi.fix_pathinfo=1 didn't help.
I changed this
RewriteRule .* index.php/$0 [L]
to this
RewriteRule .* index.php?/$0 [L]
and it worked.