Quote:
Originally Posted by bbcentral
I had the exact same issue with my forum.
In your .htaccess file, put this:
Code:
###########################################################
# MOD_REWRITE
###########################################################
Options +FollowSymlinks
RewriteEngine On
#########################
# ADD WWW.
#########################
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
Demo:
http://bluesbrotherscentral.com
http://bluesbrotherscentral.com/forum/
(both forward to 'www')
It's a 301 redirect (Moved Permanently), so it should also help you as far as Search Engine indexing/optimisation.
|
...and make sure that the rewrite module is on in your Apache.