禁止爬虫跟踪外链

  |  

摘要: 在 Hexo 中设置禁止爬虫跟踪的外链

【对数据分析、人工智能、金融科技、风控服务感兴趣的同学,欢迎关注我哈,阅读更多原创文章】
我的网站:潮汐朝夕的生活实验室
我的公众号:潮汐朝夕
我的知乎:潮汐朝夕
我的github:FennelDumplings
我的leetcode:FennelDumplings


搜索引擎的蜘蛛来爬取文章内容时,如果你的文章中有外部链接,它就会到外链的站点去爬取,有可能再也不会回来了。

因此必须有一种机制可以告诉搜索引擎不要跟踪这些外链。需要在这些链接标签中添加属性 rel=”nofollow” 或 rel=”external nofollow”

安装 hexo-autonofollow 插件

1
npm install hexo-autonofollow --save

配置 _config.yml

1
2
3
4
5
6
7
# Adds nofollow attribute to all external links in your hexo blog posts automatically.
## https://github.com/liuzc/hexo-autonofollow
nofollow:
enable: true
exclude: # 例外的链接,可将友链放在此处
- yourname.github.io # 排除你的站点
# - 友链地址

配置后,在生成的静态文件中,例外的链接就不会被加上 nofollow 属性。


Share