A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/HTML/Reference/Elements/meta/name/robots below:

<meta name="robots"> - HTML | MDN

<meta name="robots">

The robots value for the name attribute of the <meta> element (often called a "robots tag") defines the crawl and indexing behavior that web crawlers should use with the page. If specified, you define instructions for crawlers in the content attribute of the <meta> element as a comma-separated list of one or more rules.

For example, to hint to crawlers that a page should be excluded from their search indexes, a noindex value can be used:

<meta name="robots" content="noindex" />

Note: Only cooperative robots follow these rules. A crawler still needs to access the resource to read headers and meta elements (see X-Robots-Tag: Interaction with robots.txt). If you want to prevent bandwidth consumption by crawlers, a restrictive robots.txt file is more effective than indexing rules as it blocks resources from being crawled entirely.

Usage notes

A <meta name="robots"> element can have the following additional attributes:

content

The content attribute must be defined, and its value sets indexing and crawling behavior for cooperative search engine robots. Accepts one or more of the following keywords as a comma-separated list:

index

Allows the robot to index the page. This is the default behavior. Used by all major crawlers.

noindex

Requests the robot not to index the page. Used by all major crawlers.

follow

Allows the robot to follow links on the page. This is the default behavior. Used by all major crawlers.

nofollow

Requests the robot not to follow the links on the page. Used by all major crawlers.

all

Equivalent to index, follow. Used by: Google.

none

Equivalent to noindex, nofollow. Used by: Google.

noarchive

Requests that the search engine not cache the page content. Used by: Google, Yahoo, Bing.

nosnippet

Prevents displaying any description of the page in search engine results. Used by: Google, Bing.

noimageindex

Requests that this page not appear as the referring page of an indexed image. Used by: Google.

nocache

Synonym of noarchive. Used by: Bing.

Description

There are several important considerations to note when setting a robots meta value:

Examples Using a robots keyword

The following example uses nofollow to request that a crawler doesn't follow links on a page and noindex to request that the page is excluded from indexing:

<meta name="robots" content="nofollow, noindex" />
Specifications

While not part of any specification, it is a de-facto standard method for communicating with search bots, web crawlers, and similar user agents.

Browser compatibility

This feature is intended for crawlers to observe, so "browser" compatibility doesn't apply.

See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4