I don't have a favicon.ico, but IE always make a request for it.
Is it possible to prevent the browser to request for the favicon.ico for my site? Maybe some META-TAG in the HTML header?
|
I don't have a favicon.ico, but IE always make a request for it. Is it possible to prevent the browser to request for the favicon.ico for my site? Maybe some META-TAG in the HTML header? |
|||||||||||||
|
|
You can't. All you can do is to make that image as small as possible and set some cache invalidation headers ( |
|||||||||
|
|
I believe I've seen this
Anyone had similar experience? EDIT: I just tested the above snippet and on a forced full refresh, no favicon requests were seen in Fiddler. I tested against IE8 (Compat mode as IE7 standards) and FF 3.6. |
|||||||||||||||||
|
|
I will first say that having a favicon in a Web page is a good thing (normally). However it is not always desired and sometime developers need a way to avoid the extra payload. For example an IFRAME would request a favicon without showing it. Worst yet, in Chrome and Android an IFRAME will generate 3 requests for favicons:
The following uses data URI and can be used to avoid fake favicon requests:
For references see here:
The Chrome bug/behavior will probably be fixed in upcoming versions. Here is the bug submission for you to vote:
|
|||
|
|
You can use .htaccess or server directives to deny access to favicon.ico, but the server will send an access denied reply to the browser and this still slows page access. You can stop the browser requesting favicon.ico when a user returns to your site, by getting it to stay in the browser cache. First, provide a small favicon.ico image, could be blank, but as small as possible. I made a black and white one under 200 bytes. Then, using .htaccess or server directives, set the file Expires header a month or two in the future. When the same user comes back to your site it will be loaded from the browser cache and no request will go to your site. No more 404's in the server logs too. If you have control over a complete Apache server or maybe a virtual server you can do this:- If the server document root is say /var/www/html then add this to /etc/httpd/conf/httpd.conf:-
Then a single favicon.ico will work for all the virtual hosted sites since you are aliasing it. It will be drawn from the browser cache for a month after the users visit. For .htaccess this is reported to work (not checked by me):-
|
|||
|
|
|
There's a bunch of good answers, but I think the best answer as well as discussion of alternatives is on this Stack Overflow Q&A. The best seemed to be base64 encode the image in js, and feed the favicon link with a hash - the latter suggested above. A few other variations were proposed as well. |
|||
|
|
|
You could use
That way it won't actually be requested from the server. |
|||