i have a website and it should not be accessible from any one without the url or any search engines . No search engine should be aware of my website , only the person with the link should access it . can some one suggest me the best ideas since i'm going to share my office data's on it / thanks in advance

link|improve this question
feedback

3 Answers

You can prevent most search engines from indexing your site with a robots.txt file. More details here: http://www.robotstxt.org/

However, this is not very secure. Some robots ignore robots.txt. The best way to restrict access is either to require a user to log in before entering the site, or use a firewall to allow only that user's IP address.

link|improve this answer
+1 for the firewall suggestion. – Toast Mar 29 '11 at 15:38
feedback

You need to add a robots.txt file to the root folder of your website indicating that search engine spiders should not index tour website.

http://www.robotstxt.org/robotstxt.html

But its left to the search engines to read the file. Most popular search engines do honor this file. Another method is to not have a index.htm or default.htm in your website Even if it exists, remove any links to internal pages. This way spiders will never know the site structure of your website.

link|improve this answer
thanks for your information , but in my case my private website get indexed already in many search engine , can you help me in removing this – jackie Jun 1 '11 at 9:04
You will have to contact Google and other search engines and ask them to remove the content. This is a long process. I suggest you change your site structure. Make subtle changes to your folder/file names. This is faster and definitely works. – Arun Jun 4 '11 at 4:37
feedback

Wow. OK:

1) robots.txt http://www.robotstxt.org/robotstxt.html

2) Authentication. If you're using apache, password protect the site

3) Ensure no one ever links to it from anywhere.

4) Consider a different alternative, like dropbox. http://www.dropbox.com/

link|improve this answer
feedback

protected by awoodland Mar 23 at 9:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.