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

Check your site: Run a free audit on the RankNibbler homepage — 30+ SEO checks with no signup required.

Last updated: March 2026

The Right Way to Remove a Page: Decision Tree

Pick the method based on why you want the page removed:

SituationBest MethodTime to Effect
Permanently remove content + URLDelete page + 410 or 404 status + noindexWeeks
Keep URL accessible but hide from searchAdd noindex meta tag2-4 weeks after next crawl
Emergency removal (leaked, sensitive)GSC URL Removal Tool + password-protectHours
Entire directory (e.g. /admin/)robots.txt Disallow + noindex on pagesWeeks
Image onlyDelete file + URL Removal Tool for imageHours to days
Old copy after URL change301 redirect to new URLDays
Content you no longer ownContact site owner + legal routes if neededWeeks

Method 1: Noindex Meta Tag (Most Common)

Add this to the <head> of any page you want removed from search results:

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

The noindex directive tells Google not to include the page in search results. The follow directive lets Google still crawl links on the page (useful for preserving internal link equity flow). Use noindex, nofollow only if you also want to block crawlers from following links.

Google will honour the noindex on its next crawl, which could be hours or weeks depending on how often the page is crawled. To speed it up, submit the URL for indexing in Search Console — Google will re-crawl it, see the noindex, and drop it from the index.

Do NOT Block With robots.txt AND Noindex

This is the #1 mistake. If robots.txt disallows the URL, Google cannot crawl it — which means Google cannot see your noindex tag either. The URL may continue to appear in search results (as a URL-only result without description) because Google knows the URL exists via external links but cannot access the meta tag. Use noindex alone, or robots.txt alone, never both.

Method 2: HTTP 404 or 410 Status

Delete the page entirely. Serving 404 (Not Found) or 410 (Gone) tells Google the page no longer exists. Google will eventually drop it from search results — 410 is faster than 404 because it explicitly signals permanent removal.

This is appropriate when the content is gone and no replacement exists. If you have a replacement page, use a 301 redirect instead to preserve link equity.

Method 3: Google Search Console URL Removal Tool

For urgent removals (content leaked by accident, sensitive information, defamatory content that needs to come down now), use the URL Removal Tool in Search Console:

  1. Open Search Console for your property
  2. Navigate to Indexing → Removals
  3. Click "New Request" and enter the URL to remove
  4. Choose "Remove this URL" (hides from search for about 6 months) or "Clear cached URL" (removes cached copy but keeps in search)

This is a temporary removal — about 6 months. To make it permanent, follow up with one of the methods above (noindex, 404, or delete the page). Without a permanent method, the URL can reappear in search once the temporary block expires.

Method 4: Password Protection

Password-protecting a page prevents Googlebot from accessing it. Combined with a removal request, this is the fastest way to get sensitive content out of Google entirely. Use for leaked drafts, accidentally-published private documents, or temporary maintenance pages.

Method 5: 301 Redirect to Replacement

If the page has moved or has a logical replacement, a 301 redirect is the preferred method. Google treats the old URL as forwarded to the new one, transfers link equity, and eventually drops the old URL from search results. Use this for URL restructures, merged pages, and content consolidation.

Removing an Entire Section of Your Site

To remove a whole directory (say, /old-blog/) from Google:

  1. Add noindex meta tag to every page in the directory (bulk via template or CMS settings)
  2. Wait for Google to crawl the updated pages — can submit in Search Console to speed up
  3. Once all pages drop from search, add a Disallow: /old-blog/ rule to robots.txt to prevent future crawling
  4. Or redirect the entire directory to its replacement if one exists

Removing Content You Don't Own

If someone else's site is hosting your content or personal information, Google's removal tool only works for sites you own. To get content off a site you don't control:

How Long Does Removal Take?

MethodTypical Time
GSC URL Removal (temporary)A few hours
Noindex tag (after crawl)2–14 days
404 / 410 status2–8 weeks
Password protectionImmediate for crawler; hours for SERP
DMCA takedown1–7 days for Google processing
Personal info removal2–6 weeks

What NOT to Do