多个<元>同名标签元>
我需要使用 标签指定多个版权或作者。我可以多次使用同名的
标记吗?
<meta name="copyright" content="Company A" />
<meta name="copyright" content="Company B" />
搜索引擎会尊重这两种价值观吗?或者,我是否需要在一个 标记中将它们以逗号分隔?
谢谢。
I need to specify multiple copyrights or authors using the <meta>
tag. Can I use a <meta>
tag with the same name multiple times?
<meta name="copyright" content="Company A" />
<meta name="copyright" content="Company B" />
Will the search engine respect both values? Or, do I need to comma-separate them in one <meta>
tag?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用多个同名元标记是有效的 HTML。
但我们不知道搜索引擎和其他读者将如何解释它们。两个元标记将被连接,或者其中之一将被忽略/覆盖。
示例:PHP 函数
get_meta_tags()
将仅返回最后一个元标记的值。
为了避免可能出现的问题,我建议使用单个元标记:
Using multiple meta tags with the same name is valid HTML.
But we don't know how search engines and other readers will interpret them. Either two meta tags will be concatenated or one of them will be ignored/overwritten.
Example: The PHP-function
get_meta_tags()
will only return the value of the last meta tag if multiple meta tags have an equal name.To avoid possible problems I would recommend to use a single meta tag:
如果页面包含多个相同类型的元标记,Google 将聚合内容值。例如,他们的解释
方式相同:
更多详细信息请参见:http://googlewebmastercentral .blogspot.ro/2007/03/using-robots-meta-tag.html
我想大多数其他搜索引擎都会以相同的方式处理元标记。
If the page contains multiple meta tags of the same type, Google will aggregate the content values. For instance, they will interpret
The same way as:
More details here:http://googlewebmastercentral.blogspot.ro/2007/03/using-robots-meta-tag.html
I guess most other search engines would handle the meta tags in the same way.