How to make no follow links Follow

giftedwon

Registered Member
Joined
Jan 1, 2011
Messages
91
Reaction score
89
i haven't tried this on to many sites but it worked on a high pr drupal site that i was commenting on before.. i noticed all links were nofollow except one guy's who was follow. i looked at the page source and saw this

PHP:
<a rel="follow" href="http://www.yourdomain.com/" rel="nofollow" rel="nofollow">your anchor</a>

i copied that exact code into my post and it worked perfectly!
 
it became followed according to who? just because an SEO tool says that the link is followed, doesn't mean that google considers it followed. to me, that looks like code that Google would still consider no follow
 
this would be awesome if it worked, but I feel that something like that could easily be countered by google
 
Yes it works if you see through any Do follow and nofollow checker plugin but serach engines will encounter it old trick but effective if you do Blog commenting for any client hope you understand thanks! ;)
 
Very cool! I had to check if javascript really gives the first rel value and it does. I'm not sure how Google bot will interpret this, in which order they look for rel and which one overrides others, but certainly going to try it.

And confirmed, SEO plugin on my Firefox shows do follow indeed.

HTML:
<script>
document.write('<a rel="follow" href="http://www.yourdomain.com/" id="a" rel="nofollow" rel="nofollow">your anchor</a>');
alert(document.getElementById('a').rel);
</script>
 
Back
Top