Issues

Pagination: Pagination Loop

back to issues overview

Pagination Loop

URLs that have rel=”next” and rel=”next” attributes that loop back to a previously encountered URL.

This can mean that the expressed pagination series are simply ignored by the search engines.

How to Analyse in the SEO Spider

To populate this filter ‘Crawl Analysis’ must be performed via ‘Crawl Analysis > Start’.

View URLs with this issue in the ‘Pagination’ tab and ‘Pagination Loop’ filter, and export all URLs using the ‘Export’ button.

Read our tutorial on ‘How To Audit rel=”next” and rel=”prev” Pagination Attributes’.

What Triggers This Issue

This issue is triggered when URLs with rel=”next” and rel=”next” attributes loop back to a previously encountered URL.

For example:

https://www.screamingfrog.co.uk/

Has the tag:

<link rel="next" href="https://www.screamingfrog.co.uk/page2/">

And the URL:

https://www.screamingfrog.co.uk/page2/

Has the tags:

<link rel="prev" href="https://www.screamingfrog.co.uk/page1/">
<link rel="next" href="https://www.screamingfrog.co.uk/page3/">

However:

https://www.screamingfrog.co.uk/page3/

Has the tag:

<link rel="prev" href="https://www.screamingfrog.co.uk/page1/">

When it should actually have the tag:

<link rel="prev" href="https://www.screamingfrog.co.uk/page2/">

How To Fix

Ensure paginated URLs contained within rel=”next” or rel=”next” attributes and within <a> tags are to the correct pages in the sequence.

Back to top