Page has redirected image
Images should load in one request. A redirected image URL costs an extra round trip on every page view.
What it is
This check flags <img src> values that resolve through a 3xx redirect instead of returning the file directly.
Why it matters for SEO
Extra image round trips slow rendering and can worsen Largest Contentful Paint, especially on mobile.
Example
/img/a.jpg -> 301 /img/b.jpg
How to fix
- Point
srcto the final image URL. - Update templates or CDNs generating the old path.
- Keep the redirect only for legacy references.
- Re-crawl to confirm images load without redirects.