Preventing Search Engine Indexing
Posted Friday, February 6, 2004
To prevent a Search Engine from indexing a page, place the code below between the <HEAD> and </HEAD> tags.
<META NAME="ROBOTS" CONTENT="NOINDEX,NOFOLLOW">
This tag tells the robots not to index this page and not to follow any links within the page.
<META NAME="ROBOTS" CONTENT="NOINDEX,FOLLOW">
This tag tells the robots not to index this page, but follow any links within the page.