MyBB Community Forums

Full Version: 403 error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
^ have you commented out rule like below
RedirectMatch 403 display\.
you can use # at the beginning of the rule line to comment out
This is what I put in both files.  In main root and forum


# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_URI} !^/(forums|forums/.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
^ if wordpress site .htaccess has RedirectMatch 403 display\. rule then better to comment out it.
I give for tonight. Too tired lol. Try again tomorrow.

I couldn't give up lol!

Commenting it out did the trick!

My problem was a 3 level deep htaccess and I wasn't going all the way to the front one. It was in this one that the problem was. More specifically, All in one security like the one guy on the post had.

Thank you very very much!
Pages: 1 2