I have some Question about robots.txt

Discussion in 'robots.txt' started by me4you, May 31, 2007.

  1. #1
    1. Why people use robots.txt

    2. How Can I learn more about robots.txt

    3. Is that FREE !!!
     
    me4you, May 31, 2007 IP
  2. WACMan

    WACMan Peon

    Messages:
    253
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I wrote a post about this the other day.

    Hopefully it will give you the basic information you requested.

    Robot.txt
     
    WACMan, May 31, 2007 IP
  3. pommy

    pommy Peon

    Messages:
    13
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    The robots.txt file tells crawlers which files and directories should or should not be visited.

    Should specific areas of the site be protected from crawling, the folder or file location should appear after the ‘Disallow:’ instruction. For example:

    1. To exclude all robots from a server:
    User-agent: *
    Disallow: /

    2. To allow all robots complete access:
    User-agent: *
    Disallow:

    3. To exclude all robots from parts of a server:
    User-agent: *
    Disallow: /cgi-bin/

    4. To exclude a single robot:
    User-agent: BadBot
    Disallow: /

    The robots.txt file can be created in Notepad.

    It needs to be saved to the root directory of your site-that is the directory where your home page or index page is located.

    It can be viewed by visiting your URL
    http://www.yourdomain.com/robots.txt

    That's it. This will allow all robots to index all your pages.

    It's free!

    Cheers
     
    pommy, May 31, 2007 IP
    Jean-Luc likes this.