BasicSEO: criticalInside <head>

meta robots

Directives that control how search engines index the page and follow its links.

The meta robots tag gives page-level crawling and indexing instructions to search engines. The most common values are "index" (include this page in search results — the default) and "noindex" (exclude this page). Follow/nofollow control whether Googlebot follows the links on the page.

Multiple directives are comma-separated: content="noindex, nofollow" means do not index and do not follow links. Additional values include "noarchive" (do not cache the page), "nosnippet" (do not show a text snippet or video preview), "max-snippet:N" (limit snippet to N characters), "max-image-preview:large|standard|none", and "noimageindex" (do not index images on this page).

Critical distinction from robots.txt: a page blocked by robots.txt cannot have its meta robots tag read (Googlebot never fetches it), so noindex in meta tags only works on crawlable pages. If you want to remove a page from the index, keep it crawlable and add meta robots noindex.

HTML Example

<meta name="robots" content="noindex, nofollow">
<!-- Or for specific crawlers: -->
<meta name="googlebot" content="noindex">
<meta name="bingbot" content="noindex">

Attributes

name"robots" applies to all crawlers. Use "googlebot" or "bingbot" for crawler-specific rules.
contentComma-separated directives: index/noindex, follow/nofollow, noarchive, nosnippet, max-snippet:N, noimageindex.
Check this tag on your site
Audit your meta robots implementation on any URL
Index Checker

Related Tags

X-Robots-Tag (HTTP header)
An HTTP response header that carries the same directives as meta …
meta description
A 150–160 character summary of the page that may appear as the sn…
link rel="canonical"
Specifies the preferred URL for a page when duplicate or near-dup…
← All Meta Tags