Pagination SEO: Handle Paginated Content Correctly
The Pagination SEO Problem
When content is split across multiple pages (/page/1, /page/2, /page/3), each page is a separate URL with a small portion of the full content. Google needs to understand these are all part of the same series. The main risks: thin content on individual pages, crawl budget spent on low-value pages, and link equity diluted across page variants instead of concentrated on the main URL.
The Recommended Approach: Self-Referencing Canonicals
Since Google deprecated the rel=prev/next standard in 2019, the current best practice is straightforward: each paginated page should have a self-referencing canonical tag pointing to itself (not page 1). This tells Google each page is its own canonical URL, not a duplicate. Do not use a canonical pointing all paginated pages to page 1 - this tells Google pages 2, 3, 4 are duplicates of page 1 and they may be deindexed.
Sitemaps and Pagination
Include paginated URLs selectively in your sitemap. For blog archives: include page 1 (yoursite.com/blog) and optionally the first 2-3 pages. Deeper pages (page 10, page 20) have no SEO value and waste crawl budget - exclude them. For product listing pages with filters: never include filter/sort variants (?sort=price, ?color=red) in your sitemap. Use canonical tags on these filtered pages pointing back to the main category URL.
Infinite Scroll and SEO
Infinite scroll without paginated URLs is invisible to Google - Googlebot cannot scroll. If you use infinite scroll, implement paginated fallback URLs in parallel. Each scroll segment should have a corresponding discrete URL (/page/2, /page/3) that Googlebot can access directly. Link between paginated pages with standard anchor tags. This is how major news sites handle endless feeds while still getting content indexed.
Deep Pagination and Crawl Budget
For large sites with hundreds of paginated pages, Googlebot will exhaust crawl budget long before reaching the deeper pages. Implement a smart pagination strategy: ensure your most important content (newest products, highest-value posts) appears as close to page 1 as possible. Use sort-by-date or relevance as default so the first page always contains your freshest content. Consider reducing page size to show more items per page, reducing total page depth.
Noindexing Deep Pagination
For sites where paginated pages beyond page 2-3 have no realistic ranking potential, add a noindex meta tag to these deep pages. This prevents Google from indexing thin, low-value archive pages while still allowing Googlebot to follow the links on them to discover content. Keep the pages crawlable (do not block in robots.txt) but mark them noindex so they do not dilute your index quality.
Related Guides
- Title Tag SEO: Write Titles That Rank
- Meta Descriptions: How to Write Them for SEO
- Image SEO: Optimize Images for Google Search
- Video SEO: Get Videos to Rank in Google
- Anchor Text SEO: Types & Best Practices
- Category Page SEO: Optimize for Rankings
- Faceted Navigation SEO: Fix Duplicate Content & Crawl Issues