Based on my research, I haven't found anything to say that google
won't consider this duplicate content. But if it does, the worst it is
likely to do is remove one of the domains from it's database.
Unfortunately, you can't pick which one, so marketing could be a bit
harder.
I did find a recommended technique to deal with this type of situation however.
At this page:
http://rainborick.inpacifica.com/seo-tips10.html
The following is Apache code for fixing this problem, assuming
"www.okanaganwineclub.com" is your preferred domain.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.?)okwineclub.com$
RewriteRule ^(.*)$ http://www.okanaganwineclub.com/$1 [R=301,L]
This should be placed in your httpd.conf file, or if you are on a
shared host, you should create a file in your root directory called
".htaccess" and put this code in there.
What this should do is redirect all requests from okwineclub to
okanaganwineclub, and tell Google that the url has changed. So Google
will only index okanaganwineclub, but it will accept all links to
okwineclub as well. |