← All notes

The pages you want Google to ignore (noindex, follow)

2026-08-16

A common belief for beginners: put index, follow on every page so Google sees everything. That's actually a mistake. Some pages should be deliberately kept out of Google — and doing so protects your SEO instead of hurting it. The tool for that is one line: noindex, follow.

First, a relief: index, follow is the default. A normal page with no robots meta tag is already indexable and its links are followed, so you never need to add content="index, follow" — leaving it off does the same thing. The tag you actually reach for is the opposite.

What noindex, follow means

Put this in the page's <head>:

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

So the page disappears from search, but it's not a dead end — link equity still flows through it. (noindex, nofollow is rarely what you want; keep follow.)

Why hide some pages on purpose

Which pages should be noindex, follow

Rule of thumb: if a page is useful to a human already on your site, but useless to someone searching Google, noindex it.

Page typeExamples
Internal search results/search?q=…
Account pages/login, /signup, /forgot-password, /dashboard, /my-account
"Action done" pages/thank-you, /success, /welcome
Legal / admin (optional)/privacy, /terms, /data-deletion — fine to index, but many noindex them to keep Search Console focused
Printable / duplicate versionsthe print-friendly copy of a page, so it doesn't compete with the real one

Bonus: noindex means you can skip the schema

If a page is noindex, don't bother adding JSON-LD / structured data to it. Structured data only exists to make a page look good in search results — and Google never shows a noindexed page, so it will never use the schema. Save the effort (e.g. no SearchResultsPage schema on a noindexed search page).

The quick rule

Google: robots meta tag · Google: block indexing with noindex · Google: crawl budget

See also Every SEO tag and the sample site.