<meta name="Robots" content="">
Type |
---|
This META element controls the behavior of the search engine robots.
The META element is placed inside the HEAD element.
Index this page, follow links
<meta name="Robots" content="index, follow">
Do not index, do not follow links
<meta name="Robots" content="noindex, nofollow">
Attribute | Value | Explanation |
---|---|---|
name=" " | Robots | - |
content=" " | index | index this page (default) |
noindex | do not index | |
follow | follow links (default) | |
nofollow | do not follow links |
index (noindex) and follow (nofollow) are comma-separated.
content="index" : Index this page.
content="index, follow" : Index this page, follow links.
content="index, nofollow" : Index this page, but do not follow links.
content="noindex, follow" : Do not index, but follow links.
content="noindex" : Do not index.
content="noindex, nofollow" : Do not index, do not follow links.