The Robots META Tag is meant to provide users who cannot upload or control the /robots.txt file at their websites, with a last chance to keep their content out of search engine indexes and services.
<meta name="robots" content="robots-terms">
The content="robots-terms" is a comma separated list used in the Robots META Tag that may contain one or more of the following keywords without regard to case: none, noindex, nofollow, all, index and follow.
none
Robots are to ignore this page. Equivalent to: noindex, nofollow.
noindex
Page may not be indexed by a search service.
nofollow
Robots are not to follow links from this page.
all
No restrictions on indexing the page, or following links from the page to determine pages to index. Equivalent to: index, follow.
index
Robots are welcome to include this page in search services.
follow
Robots are welcome to follow links from this page to find other pages.
Admin Note: The robots directives of index, follow or all are not required as it is the default behavior of indexing spiders.
<meta name="robots" content="index, follow">
<meta name="robots" content="all">
If this meta tag is missing, or if there is no content, or the robot terms are not specified, then the robot terms will be assumed to be "index, follow" (e.g. "all"). If the keyword all is found in the robots terms list it overrides all other values. That is, a robots terms that is "nofollow, all, noindex, nofollow", would effectively be "all".
If the robots terms contains contradictory information (e.g. "follow, nofollow, follow") then the robot is free to do whatever it wishes with regard to the behavior being addressed (in this case the follow behavior).
The Robots META Tag is used for excluding content. We've included three (03) examples below of using the robots meta tag correctly to exclude information from search engine indexes and services.
noindex allows the links on that page to be followed, even though the page is not to be indexed.<meta name="robots" content="noindex">
nofollow allows the page to be indexed, but no links from the page are followed.<meta name="robots" content="nofollow">
none is the same as noindex, nofollow. Neither the page or the links on that page will be followed or indexed.<meta name="robots" content="none">
Additional information on the Robots META Tag can be found at The Web Robot's Pages from robotstxt.org - HTML Author's Guide to the Robots META Tag.
Last modified: 2008-01-20T19:47:51-0800