View Single Post
  #2 (permalink)  
Old 07-04-2005, 07:32 AM
jitender's Avatar
jitender jitender is offline
Site Admin
 
Join Date: Jun 2004
Posts: 1,200
jitender has a spectacular aura aboutjitender has a spectacular aura aboutjitender has a spectacular aura about
iTrader: (0)
Default

All major Search Engine Bots search the robots.txt file ever time,

Code:
User-agent: * Disallow:


The above code allows all robots to visit all files because the wildcard "*" specifies all robots.

if you want to disallow to robots to do not visit the site use below

Code:
User-agent: * Disallow: /


The below code disallows all robots to visit cgi-bin and images directory

Code:
User-agent: * Disallow: /cgi-bin/ Disallow: /images/


Enjoy

Jitender
__________________
Free Webmaster Tools - Free SEO Tools
phpLDHacks - Add your template or Hack and earn money
Text Link Ads - Buy & Sell text link ads
Reply With Quote