您似乎可以设置大量的元标记。我猜他们中有些比其他更重要。
最重要的元标记是什么?为什么?
我什至需要meta标签吗?(在stackoverflow主页上没有)
Answers:
我知道这个问题很旧,但仍然是Google上的热门话题,所以我想我会提供一个更新的答案,其中包括受欢迎的社交媒体网站。
我通常有四组元信息:
常规元信息-搜索引擎和浏览器使用
<title>{{pageTitle}}</title>
<meta charset="utf-8"><!-- html5 version of http-equiv="Content-Type"... -->
<meta name="description" content="{{description}}">
<meta name="keywords" content="{{keywords}}">
<link rel="author" href="https://plus.google.com/{{googlePlusId}}" />
<link rel="canonical" href="{{pageUrl}}" />
Facebook Meta Info-当有人分享您的网址时由Facebook使用
<meta property="og:url" content="{{pageUrl}}">
<meta property="og:image" content="{{imageUrl}}">
<meta property="og:description" content="{{description}}">
<meta property="og:title" content="{{pageTitle}}">
<meta property="og:site_name" content="{{siteTitle}}">
<meta property="og:see_also" content="{{homepageUrl}}">
Google+元信息-有人共享您的网址时由Google+使用
<meta itemprop="name" content="{{pageTitle}}">
<meta itemprop="description" content="{{description}}">
<meta itemprop="image" content="{{imageUrl}}">
注意:您实际上并不需要这些,Google +会退回到Facebook使用的Open Graph标签。
Twitter元信息-有人共享您的URL时由Twitter使用
<meta name="twitter:card" content="summary">
<meta name="twitter:url" content="{{pageUrl}}">
<meta name="twitter:title" content="{{pageTitle}}">
<meta name="twitter:description" content="{{description}}">
<meta name="twitter:image" content="{{imageUrl}}">
我将从这个问题中使用相同的答案:
几年前,元标记对于搜索引擎优化很重要。但是,它们已经被滥用,并且几乎所有搜索引擎(包括Google,Yahoo和Live搜索。通常都请忽略)。
您可以在(X)HTML中包含的SEO最重要的标签是<title>
和<meta name="description"...>
标签。
<title>
通常应该是您希望搜索引擎在列表中为页面命名的名称。<meta name="description"...>
有时可以为搜索引擎提供有关在建立索引时如何描述页面的基本概念。但是,使用这两个标记并不一定能提高您的网站在搜索引擎列表中的知名度。有关这方面的更多信息,Google在其网站上提供了一个不错的SEO部分。
2015年5月更新:仍然是一个非常受欢迎的答案,建议您查看@alden的答案,因为它比我自己的答案(现在6岁)更新得多
原始答案如下:
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
告诉浏览器内容类型和编码是什么
<meta NAME="ROBOTS" CONTENT="NOODP">
有关原因,请参见http://www.mattcutts.com/blog/google-supports-meta-noodp-tag/
<meta name="description"...>
明显
<meta name="keywords"...>
Google不使用此功能,但其他搜索引擎可能
<meta HTTP-EQUIV="Expires" CONTENT="Tue, 20 Jun 1995 04:13:09 GMT">
如果您知道何时希望此页面从缓存中过期