MyBB Community Forums

Full Version: redict to www
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I redirect my forum abc.com to www.abc.com ?????
add this to .htaccess file on root directory
Options +FollowSymLinks
RewriteEngine on

RewriteCond %{HTTP_HOST} ^abc\.com
RewriteRule ^(.*)$ http://www.abc.com/$1 [R=permanent,L]