| Q. How do I make sure my pages are not indexed by search engines ? A. Not all search engines and spiders respect the robots.txt convention, but some do. Do not use this as a method of restricting your content! You can set the no index option for an individual file in the header information :
<head>
<title>Example of a page I want to keep out of the search engine listing</title>
<meta name="robots" content="noindex,nofollow">
</head>
|