HOW TO FIX DUPLICATE CONTENT BLOGGER
HOW TO FIX DUPLICATE CONTENT BLOGGER – Since I created this blog, the problem I encountered was very annoying dupicate content. I do not know where lies the fault of my blog page. until one day I found a solution and solving problems of duplicate content, that is located on the comment link permalink.
![]() |
duplicate content |
Permalink comment link was not given a rel=’nofollow’, so google bot will be index this link. So when you see your blog page in the google search results will appear a few titles with the same meta tags.
The way to resolve it is put rel=’nofollow’ on these links.
![]() |
error duplicate meta tag |
REMOVE DUPLICATE CONTENT BLOGGER
1. Go to your dashboard > Template > Edit HTML > Proceed
2. Tick the Expand widget template
3. Find “comment permalink” by using ctrl+F and you will find this code
<a expr:href='data:comment.url' title='comment permalink'> <data.comment.timestamp/></a>
<b:else/>
<a expr:href='data:blog.url + "#" + data:comment.anchorName' title='comment permalink'>
4. Put rel=’nofollow’ to this link become like this code
<a expr:href='data:comment.url' rel='nofollow' title='comment permalink'> <data.comment.timestamp/></a>
<b:else/>
<a expr:href='data:blog.url + "#" + data:comment.anchorName' rel='nofollow' title='comment permalink'>
5. Then klick save template
Thanks for reading HOW TO FIX DUPLICATE CONTENT BLOGGER , I hope you will understand with my explanation.