Forum Moderators: open
We have spent a lot of time with reciprocal links on our current site and enjoy good ranking in SERPS.
We want to keep the site running on the .net but also upload the site to the .co.uk and start promoting the .co.uk and change all the links over to that. What impact would having this same site on 2 different domain names (the branding would change obviously and possibly the colour schemes but the content (news,order system, support section, members area etc) would remain exactly the same as will the navigation.
What things should I be aware of with regards to google (since it gives us 90% of our business) when doing this? Will google pick up on the duplication? The sites will in no way be crosslinked directly.
LeeF50
Two sites can initially grow faster and assist each other in ranked position.
You will need to put much planning into this.
Brand and brand trust are two major consideration that need to be addressed for the long-term.
Example:
1. If your primary market (for products/services) is UK based moving your products to the co.uk would better help develop the UK brand.
2. Corporate info would be best served by staying with the current site as .net does present a certain international advantage (.net = network or forward thinking for the future distribution in other locations outside of co.uk and/or distribution other complementing product/service ventures).
3. In addition, if you are both product and service based, a corporate division of this can distinguish each site in their own right.
4. Navigational hierarchy - maintaining an "interface" site design so that the .net still appears as the mainpage where co.uk is a physical button (externally link to a non-default page of co.uk (e.g. - domain.net has a button which links to domain.co.uk/products.html for products).
This allows you the benefit of managing a separate mainpage for co.uk outside of the normal structure (a splash page if you will) that you can individually promote to UK visitors without reducing the international potential -- UK special promotions, pricing, etc. while maintaining the "potential" international look of .net promoting to the rest of world as you attempt to increase your co.uk market share.
5. If well planned - crosslinking to co.uk from all pages at .net (noting the button is part of the top level link hierarchy) will produce exceptional link popularity without over crosslinking, or producing "un-structured" crosslinks.
6. As well if you maintain .net as the primary corporate site all pages at co.uk can link to .net's mainpage "only" (noting copyright and ownership statement - link) and again without the fear of being penalized for over crosslinking.
There are enormous benefits to this overall site design, but planning can not be neglected.
LeeF50
What if I re-write the content so it is differenct but still means the same thing?
Surely this would not be seen as a duplicate site?
LeeF50
You can point both the old and new domains to the same server. On that server, check the REMOTE_HOST field of the incoming requests to get the domain name requested by the user (or robot). If the requested domain name is the new domain, do nothing. If it is the old domain, do an external 301-Moved Permanently redirect to the new domain name and keep the requested page/object the same.
On Apache server, using mod_rewrite [httpd.apache.org] in .htaccess (which is how I do it on a shared host) it looks like this:
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com$
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=permanent,L]
The above is a trivial example; You may also want to avoid the redirect for direct IP-address access in case of DNS failure for example, but that can easily be added:
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com$
RewriteCond %{HTTP_HOST} !^123\.45\.67\.89$
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=permanent,L]
In my experience - admittedly limited to "moving" three sites - duplicate content is not a problem if all of the "duplicate site" domains return a 301 redirect, and only the one domain they all redirect to does not.
HTH,
Jim