Skip to main content
Checks robots meta tag for indexing directives
Rule IDcore/robots-meta
CategoryCore SEO
ScopePer-page
Severitywarning
Weight5/10

Solution

The robots meta tag controls how search engines index and follow links on a page. Common directives include noindex, nofollow, noarchive, and nosnippet. If your page has noindex, it won’t appear in search results. Review whether this is intentional. For pages that should be indexed, remove the noindex directive or change to “index, follow”. Be careful with nofollow as it prevents link equity from flowing to linked pages.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["core/robots-meta"]

Disable all Core SEO rules

squirrel.toml
[rules]
disable = ["core/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["core/robots-meta"]
disable = ["*"]