Role: Instructs search engines on how to crawl and index the page.
Importance: Controls whether search engines should index the page and follow links, crucial for SEO strategy.
Meta Robots tag
All the Meta Robots tag values that are commonly used:
- index
- noindex
- follow
- nofollow
- noarchive
- nosnippet
- noodp (no longer relevant, used to prevent using the Open Directory Project description)
- notranslate
- noimageindex
- unavailable_after: [date]
- max-snippet:[number]
- max-image-preview:[setting] (settings: none, standard, large)
- max-video-preview:[number]
These values can be combined to give specific instructions to search engine crawlers. For example, noindex, nofollow means the page should not be indexed and its links should not be followed.
The combined Meta Robots tag values commonly used together:
- index, follow
- noindex, follow
- index, nofollow
- noindex, nofollow
- noarchive, nosnippet
- noindex, noarchive
- index, noarchive
- noindex, noarchive, nofollow
- noindex, noarchive, nosnippet
- noindex, nofollow, noarchive
- noindex, nofollow, noarchive, nosnippet
- noindex, nofollow, noimageindex
- noindex, nofollow, unavailable_after: [date]
- index, follow, noarchive
- index, follow, noimageindex
- index, follow, noarchive, nosnippet
- index, follow, noarchive, max-snippet:[number]
- index, follow, max-image-preview:[setting] (settings: none, standard, large)
- index, follow, max-video-preview:[number]
These combinations can be used to fine-tune how search engines interact with your web pages.
Meta Robots tag must be placed between the <head> and </head> as follow:
<!DOCTYPE html>
<html>
<head>
<title>Sample Page</title>
</head>
<body>
<!-- body content here -->
<footer>
<!-- Footer content here -->
</footer>
</body>
</html>
×