MyBB Community Forums

Full Version: Redirect non-www to www
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to redirect my forum URL http://to-hawaii.com/forums to http://www.to-hawaii.com/forums
So if someone types to-hawaii.com/forums they will be redirected to the www version of the forum.
Thanks but I need to do this for a subfolder only. My main URL is already set but when I go to my forums - http://to-hawaii.com/forums it does not go to the www version of the forums url.
The answer remains the same.

in forums/.htaccess
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/forums/$1 [L,QSA,R=301]
Thanks a lot. It worked!