theme: channing-cyan
highlight: a11y-dark
禁止搜索引擎引用本页面和seo优化,都和meta标签有关?
禁止搜索引擎引用本页面相关的meta标签,及其用法介绍
html <!-- 搜索引擎,用于禁止搜索引擎索引本页内容 谷歌、必应、雅虎都支持的 meta robots 标签如下,他们会禁止搜索引擎进行相应的操作: noindex:不索引本页面。 nofollow:不跟踪本页面上的链接。 nosnippet:不在搜索结果中显示说明文字。 noarchive:不显示快照。 noodp:不使用开放目录中的标题和说明。 --> <meta name="robots" content="noindex,nofollow"/>
seo优化相关的meta标签,及其用法介绍
SEO又称搜索引擎优化,是Search Engine Optimization的缩写。
html <!-- 关键词,填写网页关键词,优化SEO的重要标签 --> <meta name="keywords" content="请输入网页关键字,例如:程序员;写代码;高薪;加班严重"/> <!-- 声明优先使用的浏览器,例如下面是优先使用的是edge和chrome --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> <!-- 网页概述,优化SEO的重要标签 --> <meta name="description" content="请输入网页概述,例如:知识社区,前端技术"/>
其他常见的meta标签
```html
```