码迷,mamicode.com
首页 > Web开发 > 详细

html Meta 标签屏蔽蜘蛛抓取的方法教程

时间:2020-09-04 17:26:50      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:页面   html   优化   错误   不能   表示   spi   它的   屏蔽   

今天有人说可以利用 html 页面的中 meta 标签来屏蔽搜索引擎蜘蛛的抓取或不让蜘蛛抓取网页中的其它链接,本着好奇的精神,就查了一些相关的资料,发现了一串类似 <meta name=‘robots‘ content=‘noindex,nofollow‘ /> 这样的HTML代码,可以告诉来网页爬取的蜘蛛本页内容是否可以抓取,是否可以抓取网页上的其它链接。

SEO优化之 meta 标签的解析

html meta标签的代码如下:

<meta name=‘robots‘ content=‘noindex,nofollow‘ />

解释:

name :是指的所有的搜索引擎.它的值有多个,下面列出几个。

robots:表示所有的搜索引擎

Baiduspide:百度

Googlebot:谷歌

content:表示对搜索引擎蜘蛛的行为做出指示,它有下面的几值来表示。

index:允许本页被抓取

noindex:禁止许本页被抓取

follow:允许本页的上其它链接可以被跟踪抓取

nofollow:禁止本页上的其它链接被跟踪抓取

noarchive:禁止搜索引擎对网站建立快照

SEO优化之 meta 标签的用法

根据上面 content 属性的四个值,我们可以列出以下几个组合的用法:

<meta name=‘robots‘ content=‘index,follow‘ />:可以抓取本页,也可以顺着本页继续索引别的链接

<meta name=‘robots‘ content=‘noindex,follow‘ />:禁止抓取本页,但可以抓取跟踪本页的其它链接

<meta name=‘robots‘ content=‘index,nofollow‘ />:可以抓取本页,禁止抓取和跟踪本页的其它链接

<meta name=‘robots‘ content=‘noindex,nofollow‘ />:禁止抓取本页,禁止抓取和跟踪本页的其它链接

<meta name=‘robots‘ content=‘noarchive‘ />:禁止搜索引擎建立快照

需要注意的是:

1、index 与 follow 的组合可以简化为 all 

<meta name=‘robots‘ content=‘index,follow‘ /> 

可以写成

<meta name=‘robots‘ content=‘all‘ /> 

2、noindex 与 nofollow 组合可以简化为 none

<meta name=‘robots‘ content=‘noindex,nofollow‘ /> 

可以写成

<meta name=‘robots‘ content=‘none‘ /> 

3、相反的属性值是不能写在一样的,比如 index 与 noindex 不能写到一起,follow 与 nofollow 不能写到一起

下面的两个示例是错误的

<meta name=‘robots‘ content=‘index,onindex‘ /> 

<meta name=‘robots‘ content=‘follow,onfollow‘ /> 

 

转自:https://www.feiniaomy.com/post/596.html

html Meta 标签屏蔽蜘蛛抓取的方法教程

标签:页面   html   优化   错误   不能   表示   spi   它的   屏蔽   

原文地址:https://www.cnblogs.com/zinging/p/13569434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!