500 Error – Not an Easy One
-
After dealing with the INFINITE REDIRECT LOOP (wordpress directory redirecting to my root html folder), i played with HTACCESS for literally 24 hours. At the end of the night, i was stuck between getting the 500 error, then updating my HTACCESS then getting a 301 error – going back and fourth.
Now, im stuck on the 500 error! ive check the HTACCESS, installed in new directory, check hosting redirecting urls and more.
CURRENTLY:
If i remove my htaccess code, the url works but im getting a 500 error.
If i add the htaccess code (see below), the url begins the loop back to my public html folder (which load my main site instead of my wordpress directory site)HTACCESS CONTENT:
=============
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /citiera/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /citiera/index.php [L]
</IfModule>
# END WordPress
=============
- The topic ‘500 Error – Not an Easy One’ is closed to new replies.