Forum Moderators: Robert Charlton & goodroi
I have a client who has 4 domain names. These currently point to one website however Google is indexing them individually e.g.
widgets.co.uk/default.asp
my-widgets.co.uk/default.asp
widgets.com/default.asp
my-widgets.com/default.asp
Their new SEO company wants to redirect all pages to widgets.co.uk to (understandably) avoid duplicate content issues
I know that I can do this on each domain name in IIS using the redirect method of:
widgets.co.uk$S$Q
But I was wondering if there was any advantage of placing a response.redirect on the individual pages of the site that have been indexed by Google over redirecting the domain name?
Your thoughts would be appreciated! Thanks in advance
Katy
Definitely make sure you check the box that says "A permanent redirection for this resource" -- or else you will get a 302 http header instead of the 301 that you need. This is a common oversight on Windows IIS Servers.
One extra thing. Never include the actual index file filename in any link on your site. End the URL with a trailing / after the domain name or after the folder name. This avoids another form of duplicate content.
Make sure that you cater for both the www and non-www versions of all of the domains too.
The redirects must NOT be chained. You should be able to get from A to X, and from B to X, and from C to X, in just one move each time. You must not go from A to B to X. That sort of redirection chain can kill your listings dead.