Google SERP Favicon Mismatch Fix
Wrong favicon in Google Search after website migration — and how we resolved it
A step-by-step account of how we diagnosed, escalated, and finally resolved a brand favicon mismatch in Google Search results following a domain migration from LWReid to Trutex.
The problem
Following a website migration from the LWReid brand to Trutex, the correct Trutex shield favicon was showing perfectly in the browser tab — but Google Search was still displaying the old circular "LW" logo next to the site name in search results.
The head of sales noticed this first:
The technical lead initially suggested it was a caching issue:
Both were partly right — but the full picture was a bit more nuanced.
SEO analysis: what was actually happening
The root cause was Google's favicon caching behaviour. Unlike page content, Google treats favicons as low-priority re-crawl targets, since it doesn't expect them to change frequently. A domain migration is exactly the kind of scenario where this assumption breaks down.
Here's a summary of the mismatch at the time:
- Google Search: displaying old "LW" circular logo (stale cache)
- Browser tab: showing correct Trutex shield favicon
- GSC crawl status: all favicon URLs returning HTTP 200 OK
Favicon URLs confirmed accessible in Google Search Console
The following Trutex favicon assets were all crawled successfully and returned status 200 OK:
/sfsites/c/resource/LWReidAssetsNew/images/favicon.ico /sfsites/c/resource/LWReidAssetsNew/images/favicon.svg /sfsites/c/resource/LWReidAssetsNew/images/apple-touch-icon.png /sfsites/c/resource/LWReidAssetsNew/images/favicon-96x96.png
So technically, everything was in place — Google just hadn't re-crawled and updated its favicon cache yet.
The redirect problem we uncovered
Monitoring the old domain revealed a secondary issue. The legacy favicon URL:
https://www.lwreid.com.au/favicon.ico
...was redirecting to:
https://www.trutex.com.au/favicon.ico → 404 Not Found
This meant anyone (including Googlebot) following the old redirect was landing on a broken URL. The correct target should have been:
https://www.trutex.com.au/sfsites/c/resource/LWReidAssetsNew/images/favicon.ico
Recommended fix (for the technical team)
Two options were proposed, in order of preference:
https://www.trutex.com.au/favicon.ico. This avoids redirect chains entirely and aligns with Google's documented preference for root-level favicons.
Redirect 301 /favicon.ico https://www.trutex.com.au/sfsites/c/resource/LWReidAssetsNew/images/favicon.ico
Steps taken to accelerate the fix
Rather than waiting passively, the following actions were taken on the SEO side to push Google to re-evaluate the favicon:
Requested indexing of the favicon URL (favicon.ico)
directly inside Google Search Console using the URL Inspection tool.
The live test returned "URL is available to Google" and indexing was
requested.
Step 2 — Homepage recrawl request
Requested indexing of the homepage (https://www.trutex.com.au/) in GSC, since Google derives the favicon association from the homepage's <link rel="shortcut icon"> tag.
Submitted a report via Google's official favicon feedback form,
selecting issue type "The wrong favicon is displaying" and providing
the correct favicon URLs and the implemented <link> tag as evidence.
Step 4 — Monitoring
Continued monitoring the favicon in live Google Search results and GSC crawl stats to track when the update propagated.
The outcome
The technical team did not implement any server-side changes to the redirect. Despite this, approximately one week after the GSC recrawl requests and feedback form submission, the correct Trutex favicon appeared in Google Search results.
Resolved
Why this matters beyond aesthetics
A favicon mismatch after a domain migration is easy to overlook — it doesn't affect rankings directly. But it does matter for:
- Brand trust in search results. Users scanning results use the favicon as a quick brand recognition cue. An outdated logo signals an unfinished migration.
- CTR impact. Unrecognised or generic favicons can subtly reduce click-through rates compared to a strong brand icon.
- Crawl signal cleanliness. Broken redirect chains to favicons add minor crawl inefficiency and introduce unnecessary 404 signals.
Comments
Post a Comment