Web developer hosting on his own subdomain as well as the live site

4ContactUK

Regular Member
Joined
Mar 9, 2013
Messages
364
Reaction score
131
Hi BHW,

I'm really angry about finding out a potential clients website has been developed on a live site for over 8 months on the designers subdomain as well as the clients own domain, meaning duplication but worse, every page of the designers subdomain is indexed and ranking in Google!

I'm seeing them today to discuss the issue and just wanted to check with you guys what I might say as a solution, i'm guessing disavow and getting him to pull it down. The thing is, its an interview so I want to be prepared for any question.

Thanks in advance!
 
I don't think that you can do much about it, if designer doesn't want to cooperate.

Otherwise, you can ask the designer to create robots.txt file for the root of the sub-domain, something like this:
Code:
User-agent: *
Disallow: /
or
Code:
User-agent: *
Disallow: /directory_in_question/

Beside this, you can also force Google to remove pages in question from index, by submitting form on the https://www.google.com/webmasters/tools/removals (you would need to first verify domain/sub-domain in your Google account).

And on top of that you should make redirects from designer sub-domain to main domain via .htaccess, like so:
Code:
Redirect 301 / http://www.main-domain.com/
this will redirect index file, and if you want to redirect specific pages, then you can use:
Code:
Redirect 301 /page-in-question.html http://mt-example.com/page-in-question.html

When all of this is done, you can make sitemap file (or create it automatically on https://www.xml-sitemaps.com/) and submit it to search engines (for Google you can use their Google Search Console).
 
Last edited:
Excellent contribution, thank you so much!!! I hope I can win that client now, really appreciate it!
 
Back
Top