How to nofollow all link

How to tell the search engine nofollow all the link but follow the test from website?
Use a special HTMLmeta tag to tell robots not to index the content of a page, and/or not scan it for links to follow.

Where to put the meta tag?

It should be placed in the HEAD section of an HTML page, as in the example above. You should put it in every page on your site.

How to write a Robots Meta Tag :

The "NAME" attribute must be "ROBOTS".

Valid values for the "CONTENT" attribute are:
"INDEX", "NOINDEX", "FOLLOW",
"NOFOLLOW". Multiple comma-separated values are allowed, but If there is no
robots <META> tag, the default is "INDEX,FOLLOW",

sample:

No index on content ,but follow the link.

<META NAME="ROBOTS" CONTENT="NOINDEX, FOLLOW">

Index the content ,but nofollow the link

<META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW">

Every thing no index.
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">


You should place a" /" at the end of the tag if you're using blogspot/blogger blog.
sample:
<META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW"/>

No comments:

Post a Comment