I own 2 domains that point to the same forum (myforum.com & myforums.com). I want to do a 301 redirect to point all traffic to www.myforums.com .... is this a good idea? If so, what code needs to be put into my .htaccess file?
Thanks
This is a discussion on 2nd domain question within the General Discussion forums, part of the vBSEO SEO Plugin category; I own 2 domains that point to the same forum (myforum.com & myforums.com). I want to do a 301 redirect ...
I own 2 domains that point to the same forum (myforum.com & myforums.com). I want to do a 301 redirect to point all traffic to www.myforums.com .... is this a good idea? If so, what code needs to be put into my .htaccess file?
Thanks
its fine to do (and works better than using a parked or cname as well to the SE's).
simply add this to your htaccess file on the "source" site: (ie, myforum.com should point to myforums.com, place on myforum.com)
I do this for my .org/.net sites...
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.domain\.org [NC]
RewriteRule (.*) http://domain.com/$1 [R=301,L]
Cool, thanks a lot for your help