Talks_44
01-05-2012, 01:30 AM
Recently I've re-added non-www to www redirects to all my domains, everything works fine except for one subfolder...
Whenever I try adding the redirect to the mydomain.net/forums/ which is my IPB forum, it produces a 500 error. The redirect works fine and as it should on everything else, including the mydomain.net itself. It's just that /forums/ with the IPB board which isn't working...
My .htaccess file
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /forums/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /forums/index.php [L]
</IfModule>The second part of the file is IPB's way of removing /index.php?/ from every URL which is a default feature.
Anyone have any ideas? I really don't see why it's not working. I've not encountered this issue before.
Whenever I try adding the redirect to the mydomain.net/forums/ which is my IPB forum, it produces a 500 error. The redirect works fine and as it should on everything else, including the mydomain.net itself. It's just that /forums/ with the IPB board which isn't working...
My .htaccess file
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /forums/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /forums/index.php [L]
</IfModule>The second part of the file is IPB's way of removing /index.php?/ from every URL which is a default feature.
Anyone have any ideas? I really don't see why it's not working. I've not encountered this issue before.