Sequence Error
What This Means
URLs that have an error in the rel=”next” and rel=”prev” HTML link elements sequence. This check ensures that URLs contained within rel=”next” and rel=”prev” HTML link elements reciprocate and confirm their relationship in the series.
What Triggers This Issue
This issue is triggered when there is an error in the sequence of rel=”next” and rel=”prev” HTML link elements, indicating a breakdown in their reciprocal relationship. For example:
https://www.getasky.com/page2/ Has the tags:
<link rel="prev" href="https://www.getasky.com/page1/">
<link rel="next" href="https://www.getasky.com/contact/"> Where https://www.getasky.com/contact/ is not a logical page in the sequence, and lacks reciprocal rel=”next” / rel=”prev” links.How To Fix
Ensure paginated URLs contained within rel=”next” or rel=”prev” attributes and within <a> tags are to the correct pages in the sequence.
Last updated on