I have a Pr6 website with a list of product URL's, is there any html code like <nofollow> </nofollow> to use in the page <body> to stop from following all the product links? I should know this but never had it come up before. Thanks guys if...?
In the <body> portion you can add this to each link: rel="nofollow" If you want to block all links, you can do it in the <head> section. If you want to not follow the link, use this: <META NAME="ROBOTS" CONTENT="INDEX, NOFOLLOW"> If you don't want to index the link, use this: <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
Thanks, but there are like 200 prooduct links and I just wanted to like batch no follow those but allow follow of the 3 or 4 in the nav bar. I guess I could add the rel="nofollow" to each and every one with WORD find and replace. Is there a way to do a batch no follow for only a section of an html page? That would be so much better and easier for me.
You can use PSPad to do a search and replace on "selected text" - just select everything except your nav bar, and let search and replace go nuts... http://www.pspad.com It's free and it's good
I was thinking of using javascript, but the search engines only look at the static text. So you will need to hardcode the nofollow. If you're running PHP, you could buffer the output and do a search/replace before echoing the buffer.
Where would the "rel="nofollow" go in this? I see two places it could go but I am not sure. <a href="http://www.XXXXXXXXXX.com/downloads/self_improvement/URL_Generic.html?XXXX" class="downloadslinks">Random Affiliate Link</a><br /> If I can get the no follow it will help me because then the 6 other links on the page will benefit from the PR6 page. I really should know this <Blink>SHAME!!!</blink>
You can put the nofollow at the end of your link code, like this... <a href="http://www.XXXXXXXXXX.com/downloads/self_improvement/URL_Generic.html?XXXX" class="downloadslinks" rel="nofollow">Random Affiliate Link</a><br />
You could insert the above code on the page you don't want to be indexed or followed. If you insert this meta-tag on the "list-page" that page won't be indexed either. I recommend the rel="nofollow" on each link instead.