使所有传出链接没有索引的谷歌



我的网站上有太多的外向链接。我想让它们都成为谷歌的no index。我不想写rel="no index"每个链接…

(< a href="..." rel="noindex, nofollow" >...< /a > )

我可以创建一个class和写这与css?

<div class="noindexlinks">

这可能吗?或者我可以为此编辑我的htaccess吗?

网站

不能通过css分配html属性

然而,你可以用一个任意的css类和一些jQuery来完成你想要做的事情。

  • 首先,创建一个任意类,如no_follow_links

  • 将此类分配给各种<a>标签,如<a class="no_follow_links" href="http://address.com">

  • 编写jQuery代码,演示使用attr方法

NOINDEX 是一个元标签,你正在寻找<a>标签上的nofollow

$(".no_follow_links").each(function(){
	$(this).attr("rel","nofollow");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a class="no_follow_links" href="http://google.com">Link</a>
<a class="no_follow_links" href="http://bing.com">Link</a>
<a class="no_follow_links" href="http://yahoo.com">Link</a>

相关内容

  • 没有找到相关文章

最新更新