Home > Software design >  How delete a Website from Google Search Engine?
How delete a Website from Google Search Engine?

Time:12-27

I want to remove a website from Google Search engine Entirely. The website has 200,000 posts indexed on google. Can anyone pls telll me that how can I remove it entirely from gooogle as I didn't want a single post of it inddexed in google...

I know how to prevent google bot from indexing my new postst but how can I remove my previously indexed 2 lac posts?

I am expecting to get a way through which I can remove my website entirely fron google....

CodePudding user response:

If you need to prevent your webpages from being indexed then insert this following meta code :

<meta name="robots" content="noindex">

Just add this code inside your header component/file

CodePudding user response:

To quickly (but temporarily) remove an entire website from Google, you could use Google Search Console's Removals tool. It'll allow you to rapidly hide the website from Google, but it's only a temporary fix until you can add a noindex tag (see Sahildeep Singh's answer to do that). To do so, go to the Removals page in the Google Search Console and press the "New Request" button. From there, you can add an entire block of URLs (e.g. example.com would block example.com/xyz) to be hidden from Google Search.

  • Related