Best Optimized Robots.Txt File F

Discussion in 'WordPress' started by SNaRe, Nov 10, 2007.

  1. #1
    I search google for too many article about robots.txt . All of them says different things. I want to learn the best robots.txt file for wordpress according to your experiences.
    For example
    Some of articles says to restrict tags. But all we know that tags are bringing good traffic to website. So why they are restricting them.
    And also for example i have too many pictures on my blog their adress starting with
    www.xxxx.com/wp-content/...pl
    I'm using wordpress upload and they also restrict pictures.
    Can someone share experiences and give their best robots.txt files?
     
    SNaRe, Nov 10, 2007 IP
  2. Machi

    Machi Active Member

    Messages:
    540
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    60
    #2
    I think that best robots.txt is empty robots.txt. Even image searchers can bring many visitor to you site... Of course it cost you few megabytes of traffic, but nowadays it's not so big problem I think...
     
    Machi, Nov 11, 2007 IP
  3. gr8liverpoolfan

    gr8liverpoolfan Notable Member

    Messages:
    6,719
    Likes Received:
    538
    Best Answers:
    0
    Trophy Points:
    285
    #3
    I disallow the feeds as well as the trackback.

    There are various combinations that one can use.
     
    gr8liverpoolfan, Nov 11, 2007 IP
  4. cormac

    cormac Peon

    Messages:
    3,662
    Likes Received:
    222
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Do you have the link to the article? Here is what I block:

     
    cormac, Nov 11, 2007 IP
  5. MarRome

    MarRome Peon

    Messages:
    865
    Likes Received:
    92
    Best Answers:
    0
    Trophy Points:
    0
    #5
    MarRome, Nov 11, 2007 IP
  6. SNaRe

    SNaRe Well-Known Member

    Messages:
    1,132
    Likes Received:
    32
    Best Answers:
    0
    Trophy Points:
    165
    #6
    SNaRe, Nov 11, 2007 IP
  7. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #7
    i wouldnt do that, either have a robots.txt that allows all (or disallows certain parts) or have no robots.txt to allow all.

    a blank robots.txt will confuse the bots.
     
    just-4-teens, Nov 11, 2007 IP
  8. sat123

    sat123 Banned

    Messages:
    1,600
    Likes Received:
    45
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Instead of robots.txt ucan use robots meta in head section

    <?php if(is_single() || is_page() || is_home()) { ?> 
        <meta name="googlebot" content="index,noarchive,follow,noodp" /> 
        <meta name="robots" content="all,index,follow" /> 
      <meta name="msnbot" content="all,index,follow" /> 
    <?php } else { ?> 
        <meta name="googlebot" content="noindex,noarchive,follow,noodp" /> 
        <meta name="robots" content="noindex,follow" /> 
      <meta name="msnbot" content="noindex,follow" /> 
     
    <?php }?>
    PHP:
     
    sat123, Nov 11, 2007 IP