Skip to Content

Non-Indexable

What This Means

The paginated URL is non-indexable. Generally they should all be indexable, unless there is a ‘view-all’ page set, or there are extra parameters on pagination URLs, and they require canonicalising to a single URL. One of the most common mistakes is canonicalising page 2+ paginated pages to the first page in a series. Google recommend against this implementation because the component pages don’t actually contain duplicate content. Another common mistake is using ‘noindex’, which can mean Google drops paginated URLs from the index completely and stops following outlinks from those pages, which can be a problem for the products on those pages.

What Triggers This Issue

This issue is triggered when paginated URLs are non-indexable. For example:

https://www.getasky.com/football-boots/page2/ Has rel=”next” and rel=”next” attributes correctly set up:

<link rel="prev" href="https://www.getasky.com/football-boots/"> <link rel="next" href="https://www.getasky.com/football-boots/page3/"> However, the page is non-indexable as it has a canonical link element to the first page in the series: <link rel="canonical" href="https://www.getasky.com/football-boots/">

How To Fix

Ensure paginated URLs are to canonical, indexable pages – so they can be crawled and indexed.


← Back to Pagination

Last updated on