Pagination URL Not In Anchor Tag
What This Means
URLs contained in either, or both, the rel=”next” and rel=”prev” attributes of the page, are not found as a hyperlink in an HTML anchor element on the page itself. Paginated pages should be linked to with regular links to allow users to click and navigate to the next page in the series. They also allow Google to crawl from page to page, and PageRank to flow between pages in the series.
What Triggers This Issue
This issue is triggered when URLs specified in the rel=”next” and rel=”prev” attributes are not found as hyperlinks in an HTML anchor element on the page itself. For example:
https://www.getasky.com/ Has the tag:
<link rel="next" href="https://www.getasky.com/page2/"> But https://www.getasky.com/page2/ is not a hyperlink within the HTML of the page.How To Fix
Ensure paginated URLs are linked to within <a> tags. This will allow them to be crawled and indexed, and pass PageRank onto any URLs they link to.
Last updated on