Stop search engines from crawling my site

Discussion in 'All Other Search Engines' started by Psychotomus1, Feb 24, 2007.

  1. #1
    how can i stop search engines from crawling my site. I don't wish for my site to be listed on any pages untill its finished which is why ive only given it out to about 10 people "WHO" i think i can trust but just incase i want to make sure that it dont get listed in case someone post the link somewhere.
     
    Psychotomus1, Feb 24, 2007 IP
  2. Edz

    Edz Peon

    Messages:
    1,690
    Likes Received:
    72
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Edz, Feb 24, 2007 IP
  3. askcybersteve

    askcybersteve Guest

    Messages:
    203
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Yup defaintely exclude the bot from indexing you by using the robots file. The above is a good read and explanation.

    cheers
     
    askcybersteve, Feb 27, 2007 IP
  4. mixke

    mixke Prominent Member

    Messages:
    5,917
    Likes Received:
    590
    Best Answers:
    0
    Trophy Points:
    310
    #4
    You can stops SEs from crawling site by using robots text file .
     
    mixke, Feb 27, 2007 IP
  5. scoobywow

    scoobywow Guest

    Messages:
    210
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    As well as using robots.txt which is certainly a good idea, it may also be advisable to use the robot meta tag in the head section of the html code of your index/home page.

    The values ALL and NONE set all directives on or off: ALL=INDEX,FOLLOW and NONE=NOINDEX,NOFOLLOW.

    Some examples:
    
    <meta name="robots" content="index,follow">
    <meta name="robots" content="noindex,follow">
    <meta name="robots" content="index,nofollow">
    <meta name="robots" content="noindex,nofollow">
    
    Code (markup):
    Note the "robots" name of the tag and the content are case insensitive.

    You obviously should not specify conflicting or repeating directives such as:

    <meta name="robots" content="INDEX,NOINDEX,NOFOLLOW,FOLLOW,FOLLOW">
    Code (markup):
    A formal syntax for the Robots META tag content is:

    content = all | none | directives
    all = "ALL"
    none = "NONE"
    directives = directive ["," directives]
    directive = index | follow
    index = "INDEX" | "NOINDEX"
    follow = "FOLLOW" | "NOFOLLOW"

    So as you don't want the engines to list you, you would use:
    <meta name="robots" content="noindex,nofollow">
    Code (markup):
    Hope this helps :)

    Regards Roger
     
    scoobywow, Feb 28, 2007 IP