I\'ve set up my ASP.NET MVC app with a favicon in the Content folder (instead of the root) along these lines. This works well, the favicon shows in all browsers.
Howeve
All browsers fetch /favicon.ico
by default to use it in the address bar, tabs, bookmarks etc. It's just a convention (and W3C doesn't like it).
Using Chrome you can see this request here: chrome://net-internals/#events
.
You can override the icon using HTML tag in the
section. This seems to prevent Chrome from checking the default location. However, even with this tag set up Chrome DevTools are not displaying
favicon.ico
as a resource that was downloaded during the page load. The reason for this may be that favicon is not used by the website, it's used by the browser. The browser request it for it's own purposes.
[EDIT] There is an open Chrome issue classifying missing favicon.ico
in the Network panel as a bug.
[EDIT] Its also a bug in a Firebug.