tags:

views:

59

answers:

2

What's the tag that you have to put in HTML to prevent your pages from being indexed by search engines?

+7  A: 

Use a robots.txt file to restrict indexing: http://www.robotstxt.org/orig.html

Ken Struys
+9  A: 

Add this to the HTML <head> element of the pages you'd like not to index:

<meta name="robots" content="noindex, nofollow">

To cover the entire site, create a robots.txt on the root folder which contains the following lines:

User-agent: *
Disallow: /

See also:

BalusC