Stop search engines indexing your web
1 Theoretical possibility
1.1 /robots.txt - robots exclusion file
Create file /robots.txt:User-agent: * Disallow: /
1.2 Use page meta tags robots
<meta name="robots" content="noindex,nofollow" />
2 The only sure method
2.1 Password protected web - web server solution
Example for Apache server: httpd.apache.org/docs/2.0/programs/htpasswd.html Create a file called .htpasswd:user1:nbGwQ3aJkq3qE (e.g. user1:encrypt password1)
AuthName "Restricted Area" AuthType Basic AuthUserFile /mysite/.htpasswd AuthGroupFile /dev/null require valid-user