James John – Software Engineer

How to make your site visible or hidden in search engines using robots.txt

How to make your site visible or hidden in search engines using robots.txt

Hi all,

Some webmasters do not want their sites to show in search engines while others want. All these can be done with the help of robots.txt

What is Robots.txt

This is a text file that is written and can be intepreted by Spiders/Crawlers to abide in rules given to it, and in robots.txt it refers to a particular spider/crawler by its UA (User Agent) in directing it where to crawl in site and  where to not. All robots.txt must be saved in the root directory and saved with robots.txt and any spider visiting your site must first look for http://yoursite.com/robots.txt before accessing the site

What is a Spider/Crawler?

Spiders or called Crawlers are programs sent by Search engines to index pages and take results gotten from pages to the search engine, Spiders are also used by H*ckers in getting Email address for spamming, and all browser, spiders/crawlers have a unique User Agent used for surfing the net.

What is User Agent?

User Agents are just like an Identity Card used by browsers and Spiders in surfing the net in order to be recognised, example of a Firefox browser User Agent is shown below:

Mozilla/5.0 (Windows NT 6.2; WOW64; rv:22.0) Gecko/20100101 Firefox/22.0

And example of a Google User Agent is shown below:

 Googlebot

How to use robots.txt in managing spiders

Now with the use of user agent we can manage the crawling of our site either referring to a specific spider or to all.

  1. User-agent: Googlebot
  2. Disallow:

With the above code, we are referring to Google to index the whole site. the User-agent is referring the Googlebot(which is Google Spider UA) and Disallow: is saying yes to crawling your site

  1. User-agent: *
  2. Disallow: /

The above code also is referring to all Spiders which is the meaning of the “*” and Disallow: / interprets to the spider not to craw any content of the site.
You can specify a directory you want it not to crawl by using Disallow: /dir_name

All these are from my own understanding, experience and knowledge, any mistake you can put me right by using the comment below.

Hope it helps!! :)

James John

Software Engineer