How to Remove a Page from Google
Sometimes you need to remove a page from Google's search results — outdated content, private pages that were accidentally indexed, or duplicate pages. Here are the methods, from fastest to most permanent.
Method 1: URL Removal Tool (Fastest)
In Google Search Console, go to Removals > New Request. This temporarily hides the URL from search results for about 6 months. You still need to use another method to make it permanent.
Method 2: Noindex Tag (Recommended)
Add a noindex meta tag to the page: <meta name="robots" content="noindex">. Google will drop the page from its index on the next crawl. Check your current robots directives with the robots directives checker.
Method 3: Delete the Page + 410 Status
Delete the page and configure your server to return a 410 (Gone) status code instead of 404. This tells Google the page is permanently removed.
Method 4: Password Protect
Add HTTP authentication to the page. Google cannot crawl password-protected pages and will eventually drop them from the index.
What NOT to Do
- Do not just block in robots.txt — this prevents crawling but not indexing. The URL can still appear in results.
- Do not just delete without a redirect — if the page has backlinks, set up a 301 redirect to preserve the link equity.
Last updated: March 2026