Link Issues Demo Page

This page demonstrates two audit rules: links3xx (internal links returning redirects) and redirect_temporary (302/307 redirects used where 301 should be).

Audit tool behaviour: All four links below have href values that trigger HTTP redirects before reaching the final destination. An audit crawler following these links will detect the 3XX response and flag them under links3xx. Two of them use 302 (temporary), which also flags as redirect_temporary.

Internal Navigation Links (All Redirect)

The following links are in the site navigation. Each one goes through a redirect before landing on the actual page. This is the links3xx issue — internal hrefs that return 3XX responses.

What These Issues Look Like in an Audit Report

Link href HTTP response Final destination Audit flags
/old-about 301 Moved Permanently /about.html links3xx
/old-services 302 Found (Temporary) /services.html links3xx redirect_temporary
/legacy-contact 301 Moved Permanently /link-issues.html links3xx
/temp-landing 302 Found (Temporary) /about.html links3xx redirect_temporary

How to Fix

Update each href to point directly to the final destination URL. No _redirects changes needed — just fix the HTML links.

← Back to SEO Issues Lab