We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
From xinternetx
I was getting that error immediately after installing, mod_rewrite was ok and chmod was ok.
The solution is in the .htaccess file adding a slash on line 601:
Changing this:
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
for this:
RewriteRule ^(.*)$ /index.php?$1 [L,QSA]