Reputation: 3168
how can i prevent a subdomain to not show up in search results. like it.domain.com
Is there an htaccess file??
Upvotes: 0
Views: 480
Reputation: 3559
I'm not sure but Try this::
User-agent: *
Disallow: /
NOTE :this code is already submitted
Upvotes: 1
Reputation: 449485
Put a robots.txt
into its root directory and have it say
User-agent: *
Disallow: /
decent spiders (i.e. all big search engines) will respect it.
Upvotes: 3