How to hide site from Alexa and other snoopers?

Discussion in 'HTML & Website Design' started by Frankenfine, Dec 14, 2009.

  1. #1
    I want to 'hide' my site from Alexa and other tools that copy-artists may use to find my site and replicate it before it gets off the ground.

    Any boilerplate code for this?

    -Gloria
     
    Frankenfine, Dec 14, 2009 IP
  2. TheVendor

    TheVendor Member

    Messages:
    75
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #2
    <html>
    <head>
    <title>...</title>
    <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
    </head>
    Code (markup):
    That will tell robots not to index the content of a page, and/or not scan it for links to follow.

    But robots can ignore your <META> tag. Especially malware robots that scan the web for security vulnerabilities, and email address harvesters used by spammers will pay no attention to this tag.

    That is why you should test your site locally before you get it off the ground.
     
    TheVendor, Dec 15, 2009 IP
  3. onehundredandtwo

    onehundredandtwo Guest

    Messages:
    56
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Or you can use robots.txt.
    agreed. You should consider installing Apache, PHP and MySQL locally so that you can do everything on your computer before uploading it.
     
    onehundredandtwo, Dec 15, 2009 IP