Mobile app version of vmapp.org
Login or Join
LarsenBagley505

: How to remove a website completely from search engine indexes except the home page? I want to de-index all the pages of my website except home page. This is because it is an exact match domain

@LarsenBagley505

Posted in: #Google #Indexing #SearchEngines #Seo

I want to de-index all the pages of my website except home page. This is because it is an exact match domain (EMD) and I'm getting traffic on website just because of Domain name.

I want to restart the website. How is it possible ?

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @LarsenBagley505

4 Comments

Sorted by latest first Latest Oldest Best

 

@Cooney921

Use the noindex meta tag <meta name="robots" content="noindex"> on all pages except the Homepage. This will ensure all pages (other than the homepage) are removed from major search engines.

10% popularity Vote Up Vote Down


 

@Sue5673885

If you are not in a hurry, set noindex noarchive on all your pages, except the home page, and let crawlers do their work progressively.

If you are in a hurry, block access in your robots.txt and use the remove URLs feature in Google Webmaster Tools too. You can use the Block URls feature in Bing too.

10% popularity Vote Up Vote Down


 

@Kristi941

Using a robots.txt file will not cause a pages to be de-indexed. It will just prevent search engines from crawling them. They can still be listed in the search results, though. To have pages removed from the index you need to use the x-robots-tag HTTP header:

x-robots-tag: noindex

10% popularity Vote Up Vote Down


 

@Gloria169

Try putting the following robots.txt in the root of your website:

User-agent: *
Disallow: /
Allow: /$


Note that it will take time and that you can use Webmaster Tools to manually request their removal (this can speed up the process).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme