多个<元>同名标签

发布于 2024-11-17 20:55:14 字数 290 浏览 4 评论 0原文

我需要使用 标签指定多个版权或作者。我可以多次使用同名的 标记吗?

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟花肆意 2024-11-24 20:55:14

使用多个同名元标记是有效的 HTML。

但我们不知道搜索引擎和其他读者将如何解释它们。两个元标记将被连接,或者其中之一将被忽略/覆盖。

示例:PHP 函数 get_meta_tags()将仅返回最后一个元标记的值。

为了避免可能出现的问题,我建议使用单个元标记:

<meta name="copyright" content="Company A, Company B" />

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:

<meta name="copyright" content="Company A, Company B" />
瑾兮 2024-11-24 20:55:14

如果页面包含多个相同类型的元标记,Google 将聚合内容值。例如,他们的解释

<META NAME="ROBOTS" CONTENT="NOINDEX">
<META NAME="ROBOTS" CONTENT="NOFOLLOW">

方式相同:

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

更多详细信息请参见: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

<META NAME="ROBOTS" CONTENT="NOINDEX">
<META NAME="ROBOTS" CONTENT="NOFOLLOW">

The same way as:

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文