Meta Robots and robots.txt - A weapon for SEO

Robots plays important role in the field of SEO. We have two ways to control pages and folders one is using Robots META tag and other is through robots.txt

Robots plays important role in the field of SEO. We have two ways to control pages and folders one is using Robots META tag and other is through robots.txt

A web page creator can specify which page should be indexed and which page should not be indexed by search engines by placing Robots META tag in the HTML section

Here are some Robots tags that are common

< Meta content="NOINDEX" name="ROBOTS">- Ignore content and follow links
< Meta content="NOFOLLOW, INDEX " name="ROBOTS">- Include content and do not follow links
< Meta content="NOINDEX,NOFOLLOW" name="ROBOTS">- Ignore content and do not follow links
< Meta content="INDEX,FOLLOW" name="ROBOTS">- Include content and follow links
< Meta content="NOARCHIVE" name="ROBOTS">- Cache link should not show Search results pages
< Meta content="NOODP" name="ROBOTS">- The Open Directory Project (ODP) title and description for the page should not be displayed in Search results
< Meta content="NOYDIR" name="ROBOTS">- The Yahoo Directory title and description for the page should not be displayed in Search results
< content="NOSNIPPET" name="ROBOTS">- Titles are only displayed in Search results page and not description or text context for this page

In addition to manage folder level user agent control robots.txt file can be used. This file can be placed in root of each server and the format is plain text not HTML

Through this file website owner or webmaster can allow access to web page content and disallow access to admin, cgi and any secured files that you don’t want search engines to index

A typical robots.txt file will look like

User-agent: *
Allow: /
Disallow: /admin*
Allow: *content*
Disallow: /test/
Disallow: /paypal/
Disallow: /credit/
Disallow: /cgi/


Explains, all robots can crawl except the admin files, and crawl files named content folder, and should not crawl test, paypal, credit and cgi folder.

Hope this article helps to know more about robots and its act in SEO. You can also analyze further on checking Google's robots.txt file http://www.google.com/robots.txt