1

我有一个包含分页结果的搜索页面。谷歌如何知道要转到下一页,以便它可以抓取所有内容而不仅仅是第一页?

4

1 回答 1

1

Google 实际上建议对分页页面使用 rel="next" 和 rel="prev"。

基本上,您将在文档的头部插入两个额外的标签(第一页和最后一页除外):

<head>
    …
    <link rel="prev" href="http://www.example.com/article?story=abc&page=1" />
    <link rel="next" href="http://www.example.com/article?story=abc&page=3" />
    …
</head>

更多信息可以在他们的博客中找到:http: //googlewebmastercentral.blogspot.ch/2012/03/video-about-pagination-with-relnext-and.html

即使您不这样做,谷歌通常也会很好地索引分页结果。但帮助他们并没有什么坏处。

于 2013-11-29T10:10:32.800 回答