Mobile app version of vmapp.org
Login or Join
Barnes591

: Remove subdomain from Google I bought a website with its subdomains registred as 3rd level domain name so main site is e.g. example.com and subdomains e.g. en.example.com, de.example.com, etc.

@Barnes591

Posted in: #GoogleIndex

I bought a website with its subdomains registred as 3rd level domain name so main site is e.g. example.com and subdomains e.g. en.example.com, de.example.com, etc.

I deleted subdomains from DNS because I want only example.com but in Google search results there are yet subdomains.
What I have to do in order to remove all subdomains from search results?
Using search console and submit URLs to remove would be stressful.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Barnes591

1 Comments

Sorted by latest first Latest Oldest Best

 

@Jessie594

Maybe instead of going the "stressful" way to remove each and every old URL, simply create 301 redirections from all the en/de.example.com URLs to your example.com.

This is probably a better approach for removing URLs of old subdomains, as eventually Google will find out that all the old subdomains URLs have permanently moved to your new one, and will remove/replace them in its index.

Same time, you can keep driving traffic from old indexed URLs to your site, for as long as they will keep appearing in SERPs, instead of killing all this traffic at once by terminating the subdomains - resulting to a non resolving url.

Keep in mind that time is essential here, as the procedure of removing old URLs from Google's index is slow, whatever way you go.

You can use .htaccess for this.


To redirect from en.example.com/url to example.com/url:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^en.example.com$
RewriteRule ^(.*)$ example.com/ [R=301,L]



To redirect requests for en.example.com/url to example.com:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^en.example.com$
RewriteRule ^(.*)$ example.com/ [R=301,L]




Notes:

You will need the DNS back, so the subdomains will keep resolving.
You may also want to implement more techniques, like adding entries in your robots.txt, or implement noindex,nofollow's for the old subdomain URLs.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme