Forum Moderators: phranque

Message Too Old, No Replies

How making a test bed fully not SE accessible

Everything tied to the DN nofollow noindex

         

henry0

12:25 pm on Feb 12, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I have a server test bed with its own DN
How could I make sure that this test bed will never be indexed?
I obviously do not want doing this one page at a time
thanks

Receptional Andy

12:26 pm on Feb 12, 2008 (gmt 0)



Password protection is the best option. Robots.txt will block spiders but the URL may still show in search results.

henry0

12:45 pm on Feb 12, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Never thought about using a PW protection;
but as you mentionned still need to deal with the URL
My problem is that I need it to be live and not on my local machines - aside me it is also accessed by my CSS person and graphic partner -

Receptional Andy

1:05 pm on Feb 12, 2008 (gmt 0)



There should be no reference in search result if you use password protection. This can, however, happen with a robots.txt disallow if links to the test server exist somewhere.

If you use HTTP authentication spiders all receive a 401 or 403 response since they don't supply login credentials, and search engines don't list pages with these status codes.

henry0

2:01 pm on Feb 12, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



in that case this should fine since there are no inbound links

Receptional Andy

3:21 pm on Feb 12, 2008 (gmt 0)



You may be surprised at how links can crop up to a site, so I would always advise a password. There's also the potential for discovery via toolbars if you send out a link to anyone.

lammert

4:19 pm on Feb 12, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



My problem is that I need it to be live and not on my local machines - aside me it is also accessed by my CSS person and graphic partner

If there wil only be a handful of people working with the site, you can make the site accessible for those IPs. In Apache .htaccess this would be something like:

Order deny,allow
Deny from all
Allow from 111.111.111.111 222.222.222.222

henry0

5:53 pm on Feb 12, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks,
I like that solution.