Meta robots noindex
A noindex left in the meta robots tag removes a page from search results entirely, however well-optimized everything else is. How to check it.
What it is
The meta robots tag — <meta name="robots" content="..."> — gives per-page instructions to crawlers, most commonly noindex (don't show this page in search results) and nofollow (don't follow links from this page). This check fails when either is set.
It's a page-level control, distinct from robots.txt, which blocks crawling at the site or path level before a crawler ever reads this tag.
Why it matters
A noindex left on a page — commonly a staging-environment default that never got removed after launch — makes that page invisible to search regardless of how well everything else on it is optimized. It's a high-severity finding because it doesn't degrade a page's SEO, it removes the page from results entirely.
The usual cause is a build or CMS default meant for a staging environment that shipped to production unnoticed; it's worth checking after any deploy pipeline or CMS change, not just once at launch.
How to fix it
with a reference doc<meta name="robots" content="index, follow">Related checks
3This is one of the 75 checks the scanner runs. See what we check for the full list, every severity weight, and how the score is computed from them.