Disallow Search
Engines from Indexing a Page
If you don't want search engines
to index a page for any reason, or to follow links on that page, you can
use these tags to do so.
Insert this code between your
<head> and </head> tags to prevent the robot from indexing
the page, or following any of the links on the page.
<meta name="ROBOTS"
CONTENT="NOINDEX,NOFOLLOW"> |
Insert this code between your
<head> and </head> tags to prevent the robot from indexing
the page, but to allow the robot to follow all of the links on the page.
<meta name="ROBOTS"
CONTENT="NOINDEX,FOLLOW"> |
Note that not all search engines
will follow this, but most of the big ones do.
|