We respect your privacy.

We use strictly necessary cookies to keep you signed in and to protect against CSRF. With your permission we also use a small amount of first-party analytics to improve the product. We do not sell your data and we do not use third-party advertising trackers. See our cookie policy and privacy policy .

← All learn topics

Rule page.robots-meta.noindex

Audit the noindex robots meta

page.robots-meta.noindex is a check in Crawlmind's site audit that grades high-impact issues of this kind. This page explains why the rule matters and the exact fix.

Impact: highEffort: lowFixable: 1-click

Why it matters

This page has `<meta name="robots" content="noindex">`. Sometimes that's intentional (gated content, internal tools, staging pages that leaked into prod). Often it's accidental: a CMS template inherited the noindex from a parent, or a checkbox was flipped during a redesign. The rule fires so you can decide which case applies.

The fix

Two paths:

**Keep noindexed (intentional).** Leave the meta as-is. Optional:
add `nofollow` to also block link-graph contribution from this page.

```html
<meta name="robots" content="noindex,nofollow">
```

**Make indexable (accidental).** Remove the meta entirely, OR set
an explicit allow:

```html
<meta name="robots" content="index,follow">
```

Re-fetch via Google Search Console → URL Inspection after the change to confirm Google sees the new directive.

References