Pagination and crawling
Paginated series — listings split across page 1, 2, 3 — affect how deep crawlers go and how content is discovered. Google once used rel=next/prev as a pagination signal but stopped using it; current practice relies on crawlable links, sensible URLs, and keeping important content within reachable crawl depth.
The rel=next/prev history
Google previously supported rel=next and rel=prev link annotations as hints that a set of pages formed a paginated series. Google later announced it had not used those signals for some time and that pages are evaluated individually. So while rel=next/prev is valid HTML and some other consumers may use it, it is not a Google pagination signal today.
The practical implication: do not rely on rel=next/prev to make Google understand pagination. Focus instead on crawlable structure.
Pagination, crawl depth, and discovery
What matters now is that each paginated page is reachable through ordinary crawlable links (real anchor tags with href, not JavaScript-only controls that produce no link). Crawlers follow those links to discover deeper pages and the items linked from them.
Crawl depth is the concern: content many pages deep, or buried behind 'load more' controls that do not expose URLs, is discovered slowly or not at all. Give each page a stable, unique URL, ensure next-page links are crawlable, and consider supplementary discovery paths (category links, sitemaps) so important items are not stranded deep in a series.
- rel=next/prev is not a current Google pagination signal
- Use crawlable anchor links between pages, not JS-only controls
- Keep important items within reachable crawl depth
Operator checklist
Give paginated pages unique, stable URLs and crawlable next/previous links. Do not depend on rel=next/prev for Google. Watch crawl depth so key items are not buried; add category links or sitemap entries to surface deep content. Avoid 'load more' patterns that expose no crawlable URL.
How it appears in analytics and logs
Pagination determines how crawlers traverse a series and how deep linked content sits. Items buried many pages deep are crawled less often; broken or non-crawlable pagination links can leave later pages undiscovered.
Diagnostic use case
Make paginated content discoverable by keeping links crawlable and important items within reachable depth, without relying on retired rel signals.
What WebmasterID can help detect
WebmasterID can show how deep into paginated series crawlers reach, helping you see whether later pages and the items they link are being discovered.
Common mistakes
- Relying on rel=next/prev as a Google pagination signal — it is retired.
- Using JavaScript-only 'load more' with no crawlable page URLs.
- Burying important items so deep that crawlers rarely reach them.
Privacy and accuracy notes
Pagination diagnosis concerns URL structure and crawl depth, not personal data. WebmasterID reports crawl patterns without exposing individual visitors.
Related pages
- Orphan pages diagnosis
An orphan page is one that no internal link points to. Crawlers discover pages mainly by following links, so an orphan is hard to find — it may exist only in a sitemap or be effectively invisible. Diagnosing orphans means comparing all known URLs against your internal link graph and fixing the gap with links.
- JavaScript rendering and crawling
Content injected by JavaScript is not in the initial HTML, so a crawler must render the page to see it. Rendering is more expensive than fetching HTML, and not all crawlers render. Server-side rendering (SSR) or prerendering puts content in the HTML directly, reducing dependence on the crawler's render step.
- Website observability
See how deep into paginated series crawlers reach.
Sources and verification notes
- Google Search Central — rel=next/prev no longer usedDocuments that Google does not use rel=next/prev for indexing.
- Google Search Central — Crawling and indexing overview
Last reviewed 2026-06-24. Facts are checked against primary/official sources where available; uncertain specifics are marked “Data not yet verified” rather than guessed.