使用 rel="next" 进行分页 SEO rel=“上一个” HTTP 标头

发布于 2024-12-07 10:53:35 字数 656 浏览 2 评论 0 原文

我正在尝试对网站上的分页控件执行一些搜索引擎优化。

遵循 Google 指南,我希望将链接 rel=next/prev 添加到我的搜索结果页面的

不幸的是,由于 MVC3 的设计决策/渲染限制 部分并在部分中定义其内容,我无法执行此操作。

所以我的问题是 - 我可以通过添加“链接”HTTP 标头来复制上述功能,即 Link: ; rel="next" 到响应中,因此不必在 中添加 标记?

I am trying to perform some SEO on a pagination control I have on a website.

Following the Google guidelines, I would like to add link rel=next/prev i.e. <link href="/search/results?page=2" rel="next" /> to the <head> of my search results page.

Unfortunatley, due to a design decision / limitation of MVC3 with rendering sections and defining their content within Partials, I'm unable to do this.

So my question is - can I replicate the aforementioned functionality by adding a "Link" HTTP header, i.e. Link: <http://www.example.com/search/results?page=2>; rel="next" to the response and therefore not have to add the <link> tags in the <head>?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

烟燃烟灭 2024-12-14 10:53:35

这是 Maile Ohye 的回答

@estrik:我们支持 HTTP 标头中的 rel=”next” 和 rel=”prev”。例如,对于文章的 page=2,您可以使用 HTTP 标头进行响应:

链接:http://www.example.com/article?story =abc&page=1; rel="上一页"

链接:http://www.example.com/article?story =abc&page=3; rel=“下一个”

This was answered by Maile Ohye.

@estrik: We support rel=”next” and rel=”prev” in the HTTP header. For example, for page=2 of an article, you could respond with the HTTP header:

Link: http://www.example.com/article?story=abc&page=1; rel="prev"

Link: http://www.example.com/article?story=abc&page=3; rel="next"

冬天旳寂寞 2024-12-14 10:53:35

参考 Google 员工的此帖子 Google 支持 HTTP 标头中的 rel=prev/next

Referring to this post from a Google employee rel=prev/next in the HTTP header is supported by Google

桃酥萝莉 2024-12-14 10:53:35

目前,我很确定他们不支持这一点,因为他们也不支持在锚点上具有 rel 属性。

At the moment, I'm pretty sure they aren't supporting that, as they aren't support having the rel attribute on the anchor either.

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