Mobile app version of vmapp.org
Login or Join
Pierce454

: What if using rel="dofollow" and rel="nofollow" together for a link? How does google consider these links? for example : <a href="url" rel="nofollow" rel="dofollow">text</a> Is it a dofollow

@Pierce454

Posted in: #Dofollow #Hyperlink #Nofollow #Rel #Seo

How does google consider these links? for example :

<a href="url" rel="nofollow" rel="dofollow">text</a>


Is it a dofollow link or nofollow? Which one has more priority over the other one?
I've used dofollow tags for backlinks of my website www.greenseo.ir , but I think it's an error!

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Pierce454

2 Comments

Sorted by latest first Latest Oldest Best

 

@Nimeshi995

No such thing as dofollow:

The dofollow attribute does NOT EXIST in either rel or meta, this is due to the fact that by default both pages and links are considered dofollow unless you use nofollow.

Meta follow is not to be confused with dofollow <meta name="robots" content="noindex, follow">

Despite MASS belief follow and dofollow have nothing in common other than the fact they share a similar name, it has absolutely no bearing on passing of page rank. Meta Follow it simply informs search engines to discover content on the receiving end of links...

A page that is not indexed by Google or Bing will not pass juice period. Also, the usage of content="noindex, follow" is pointless because simply using content="noindex" informs search engines to follow links unless you use content="noindex, nofollow".


Rel dofollow is invalid markup:


SOURCE

<a href="#" rel="dofollow">test</a>

Bad value dofollow for attribute rel on element a: The string dofollow is not a registered keyword.d.




Using duplicate REL is invalid markup:


SOURCE

<a href="#" rel="nofollow" rel="rel">test</a>

Error: Duplicate attribute rel.



Example of valid markup using multiple rel values:


SOURCE

<a href="#" rel="nofollow me">test</a>

Document checking completed. No errors or warnings to show.

10% popularity Vote Up Vote Down


 

@Berumen354

The tag rel="dofollow" doesn't exist, it does nothing if anybody uses it.

Having two rel attributes in the same tag is an error, regardless of their value.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme