<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SEO Web Design Blog &#187; meta</title>
	<atom:link href="http://www.newshoemedia.com/blog/tag/meta/feed" rel="self" type="application/rss+xml" />
	<link>http://www.newshoemedia.com/blog</link>
	<description>SEO and Search Engine Friendly Web Design</description>
	<lastBuildDate>Tue, 20 Oct 2009 19:52:29 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Using the META Robots Tag</title>
		<link>http://www.newshoemedia.com/blog/seo/meta-robots-tag-tutorial</link>
		<comments>http://www.newshoemedia.com/blog/seo/meta-robots-tag-tutorial#comments</comments>
		<pubDate>Fri, 23 Jan 2009 04:14:13 +0000</pubDate>
		<dc:creator>Claye Stokes</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://www.newshoemedia.com/blog/?p=129</guid>
		<description><![CDATA[Tutorial: How to use the Meta Robots tag — code  examples, meanings, and all the major REP directives.
I&#8217;ve seen a whole lot of websites lately that  are wasting space (and the time it took to write it) by implementing the Meta  Robots tag like this:

&#60;meta name="robots" content="all, index, follow" /&#62; 

If you [...]]]></description>
			<content:encoded><![CDATA[<p>Tutorial: How to use the Meta Robots tag — code  examples, meanings, and all the major <acronym title="Robots Exclusion Protocol">REP</acronym> directives.</p>
<p>I&#8217;ve seen a whole lot of websites lately that  are wasting space (and the time it took to write it) by implementing the Meta  Robots tag like this:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="all, index, follow" /&gt; </code></li>
</ol>
<p>If you want search engine bots to crawl and  index your website, then just leave it alone. By default, search engines will  crawl, index, and archive every page on your website that they can find by  following links. You also don&#8217;t have to say &#8220;all&#8221; — every bot that  obeys the Robots Meta tag will obey it by default.</p>
<p>So not only is that example <strong>pointless </strong>because that is the default, <strong>it is repeating the same command twice</strong>!</p>
<p><span id="more-129"></span></p>
<p>Here are some handy uses for the Meta robots tag  (these work for Yahoo!, MSN, and Google bots):</p>
<p><strong>Normal  talk</strong>: Just ignore this page &#8211; don&#8217;t keep a copy because I don&#8217;t want  to see it in search engine results. I don&#8217;t want you to follow the links on  this page, either.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="none"  /&gt; </code></li>
</ol>
<p><em>(surprised  that it&#8217;s not &#8220;noindex, nofollow&#8221;?  &#8211; that&#8217;s just a long and  unnecessary of telling search engines to ignore the page completely)</em></p>
<p><strong>Normal  talk</strong>: I don&#8217;t want to see this page in search results, so don&#8217;t keep a  copy of this page. You can follow the links on this page, though &#8211; those  websites deserve credit.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="noindex,  follow" /&gt; </code></li>
</ol>
<p><strong>Normal  talk</strong>: Take as many copies of this page as you want and hook me up with  traffic from your search engine results. Don&#8217;t follow the links on this page  though, those websites aren&#8217;t that great anyways.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="index,  nofollow" /&gt;</code><em><code> </code></em></li>
</ol>
<p><strong>Normal  talk</strong>: You can make a copy of this page to plug into your algorithm,  but don&#8217;t give anyone access to it with the &#8220;cache&#8221; link in search  engine results.</p>
<p>Code:</p>
<ol class="code">
<li><code> &lt;meta name="robots" content="noarchive"  /&gt; </code></li>
</ol>
<p><strong>Normal  talk</strong>: I don&#8217;t want you to pull any text from my website to use in  search engine results. Just a link will do. You&#8217;re free to index this page and  follow all links.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="nosnippet"  /&gt; </code></li>
</ol>
<p><strong>Normal  talk</strong>: Stop using my Dmoz.org listing description in search results &#8211; I  want you to use a snippet of text from the page to show users the contextual  relevance of my site to their search query.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="robots" content="noodp"  /&gt; </code></li>
</ol>
<p>(<acronym title="No Open Directory Project">NOODP</acronym> is an acronym &#8220;No Open Directory  Project&#8221;)</p>
<h2>Some  Useful Googlebot Meta Tags:</h2>
<p>These Meta tags work exclusively in Google (all  of these would work with the &#8220;robots&#8221; name, but since Googlebot is  the only bot that officially follows these REP directives, I&#8217;ll use  &#8220;googlebot&#8221; or &#8220;google&#8221;, in the case of the notranslate  tag):</p>
<p><strong>Normal talk</strong>: Ignore the images on this page &#8211; I  don&#8217;t want to see them in Google Image Search.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="googlebot"  content="noimageindex"&gt;</code></li>
</ol>
<p><strong>Normal  talk</strong>: Heads up &#8211; this page will be out of commission (deleted,  expired, moved, etc.) on this day.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="googlebot"  content="unavailable_after: 13-DEC-2011 11:45:00 PST"&gt;</code></li>
</ol>
<p><strong>Normal  talk</strong>: Don&#8217;t translate the content on this page into other languages.</p>
<p>Code:</p>
<ol class="code">
<li><code>&lt;meta name="google" value="notranslate"&gt;</code></li>
</ol>
<p><em>! Notice  that in this case, the Meta name is &#8220;google&#8221;, not  &#8220;googlebot&#8221;.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.newshoemedia.com/blog/seo/meta-robots-tag-tutorial/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
