|
When a search engine spider crawls your site, it does so two ways:
- it looks in all public directories for web page files (.html, .htm, .asp, .php, etc.), as well as image files (.jpg,
.gif)
- it automatically follows the links on your site in order to index individual pages.
If you want control over which directories on your web site get indexed, you can the ROBOTS meta tag in the header of your root index page as well as other web pages. Not all of the search engine robots use this tag, but it's a good idea to
include it for the ones that do.
The correct syntax for the tag is:
meta name="robots" content="noindex,nofollow"
[more]
|