Reputation: 1395
I don't want some of divs on my page to be followed by Google because they contain duplicate content from other websites, is this possible that I prevent those div
s to be 'no-followed'?
I have seen this: Methods for preventing search engines from indexing irrelevant content on a page but its suggesting JavaScript for this purpose and I can't use JS in my case, also that question is from 2009, I hope things are bit changed now?
Upvotes: 1
Views: 1415
Reputation: 558
If you really do not want use javascript for this, the only way I'm sure will stop Google for index some content of your page is using iframe + robots noindex/nofollow.
<meta name="robots" content="noindex, nofollow">
Keep in mind that it will probably be interpreted as if it were adversing, so there will be some penalty, but this penalty may be lower than copying significant amount of content.
Upvotes: 1