Skip to content

Apache Server: Internal Server Error 500 after installing [How to solve]

♚ PH⑦ Soria ♛ edited this page Jan 21, 2017 · 1 revision

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]

Clone this wiki locally