[Solved] 500 error thrown due to .htaccess bug [duplicate]


The first <ifModule> is not closed, this:

RewriteRule ^(.*)$ index.php?/$1 [L]
<IfModule>

has to be

RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
#^

solved 500 error thrown due to .htaccess bug [duplicate]