One or more favicon or apple-touch-icon URLs return 404 errors, causing missing icons in browsers and search results.
By Seoxpert Editorial · Published
Favicons and apple-touch-icons are key for branding in browser tabs, bookmarks, and Google Search results. Broken icons display as generic placeholders, reducing site credibility and potentially lowering click-through rates. On iOS, a missing apple-touch-icon leads to a blurry screenshot when users add your site to their home screen.
Leaving this unresolved results in unbranded or generic icons in browsers and search listings, diminishing user trust and recognition.
A crawler checks the URLs specified in <link rel="icon"> and <link rel="apple-touch-icon"> tags and reports HTTP 404 or similar failures.
Broken favicon link example
<link rel="icon" href="/favicon.ico">
<!-- But /favicon.ico does not exist or returns 404 -->Fixed favicon link example
<link rel="icon" href="/favicon.ico">
<!-- /favicon.ico is present and accessible -->Broken apple-touch-icon example
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
<!-- But /icons/apple-touch-icon.png returns 404 -->Fixed apple-touch-icon example
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png">
<!-- /icons/apple-touch-icon.png is present and accessible -->Browsers and search engines display a generic icon, reducing your site's branding and potentially lowering click-through rates.
Yes, favicon is used in browsers and search results, while apple-touch-icon is used when users add your site to their iOS home screen.
You can, but browsers will still request /favicon.ico by default. It's best to provide a valid favicon at that location.
The recommended size for apple-touch-icon is 180x180 pixels in PNG format.
Run a scan to see if Broken Favicon / Apple-Touch-Icon affects your pages.
Scan my website →