meta-robots: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
(drafted)
 
(added example)
 
Line 2: Line 2:


The [[HTML4]] [[meta]] element when used with <code>name="robots"</code> provides instructions to robots for how to (or how not to) handle the current page.
The [[HTML4]] [[meta]] element when used with <code>name="robots"</code> provides instructions to robots for how to (or how not to) handle the current page.
[[XHTML]] Example:
<pre><nowiki>
<meta name="robots" content="noindex, nofollow" />
</nowiki></pre>


See the [http://www.robotstxt.org/meta.html The Web Robots Pages: About the Robots <META> tag] for more details.
See the [http://www.robotstxt.org/meta.html The Web Robots Pages: About the Robots <META> tag] for more details.

Latest revision as of 00:04, 13 November 2007

meta robots

The HTML4 meta element when used with name="robots" provides instructions to robots for how to (or how not to) handle the current page.

XHTML Example:

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

See the The Web Robots Pages: About the Robots <META> tag for more details.

related