Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

Possible Duplicate:
How to Remove URLs from Google Search Engine

Our hosting provider has a kind of internal subdomain with our domain IP like: n265-269-265-265.cnet.hosting.iiii That internal subdomain is redirected to our registered domain and is publically available. Google indexed internal domain content and now it is appearing on search pages. We'd like that Google remove that internal subdomain redirected content from search. We don't know how. Any help?

Our hosting provider is acctually a subprovider and, AFAIK, doesn't fully control that main hosting domain and I stucked in a discussion with them about what can be done.

share|improve this question

marked as duplicate by paulmorriss, John Conde Jul 19 '12 at 11:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You can remove content from google by using Google webmaster tools, see this page on Google which should help you to answer your query.

You will need to register your subdomain with webmaster tools and authorise it before you can remove it but it's a very easy process.

The other thing you may want to consider is adding a canonical URL to the page, this way Google will know that the URL should be the proper one and not the subdomain.

share|improve this answer
That's not our domain. The main domain is of our hosting provider. – blagi Jul 19 '12 at 12:26
You should still be able to register the directory that your files are in – Vince Pettit Jul 19 '12 at 12:34
1  
Looks like I solved this issue with .htaccess:<pre>RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(exact-subdomain-inside this bracket)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=410,L]</pre> – blagi Jul 19 '12 at 13:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.