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
2010-08-10 00:46:09
+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
2010-08-10 00:46:12