指定&#34; nofollow&#34; <div>中链接的属性

时间:2016-11-12 16:29:04

标签: html nofollow

我在网站页脚中有以下代码:

<div class="examples-footer">
    First text <a href="http://example.com/" target="_blank">Example</a> 
    Second text <a href="http://example.com/something" target="_blank">Example2</a>
</div>

我想将那两个链接指定为&#34; nofollow&#34;。但是,我只能通过在

之后插入其他text / html标记来操作输出
<div class="examples-footer">

之前

First text <a href="http://example.com/" target="_blank">Example</a> 

只需插入<rel="nofollow">标签就行不通;有没有办法在我指定的约束条件下使用HTML标记来实现这一点,还是不可能?

1 个答案:

答案 0 :(得分:0)

如果您不希望机器人/抓取工具/蜘蛛程序按照页面上的任何链接进行操作,请使用头部中的机器人meta标记:

<meta name="robots" content="nofollow">

如果您不希望搜索引擎计算链接以进行网页排名,请使用链接中的rel属性:

<a href="//stackoverflow.com" rel="nofollow">

当然,这些都不会阻止人类(或猫)跟随点击链接。