Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the following:

<link rel="shortcut icon" href="/images/favicon.ico" />

It is a true 'ico'. When I visit http://mydomain.com, the icon loads. But when I visit the 'www' subdomain: www.mydomain.com...it won't load. Any ideas what is going on?

share|improve this question
1  
Have you found a solution to your problem? If so, please communicate your solution and/or accept an answer, so others can benefit from your experience! – David Sep 22 '09 at 16:16

9 Answers

It's part of a bigger firefox bug. If I am in mysite.com and say link rel="shortcut icon" href="/myicon.ico" it works. But this is the only way it works. If am in mysite.com and say link rel="shortcut icon" href="myicon.ico" or any other relative link, it fails. HOWEVER, if I am in www.mysite.com and use relative links, they work fine. Further, if I am in mysite.com and say link rel="shortcut icon" href="http://www.mysite.com/mypath/myicon.ico" it works. Firefox has forgotten how to deal with websites where www.mysite.com IS mysite.com. It used to work, and it doesn't anymore. You can also see that if you flip between www.mysite.com and mysite.com links will change from "visited" to "unvisited" style. FF is broken on this one, and has been for a couple of versions now, though once it worked.

share|improve this answer
"www.mysite.com" and "mysite.com" are two different sites. FF is correct in this respect. The site should only be accessible from one, not both. The site should have a permanent (301) redirect from one to the other. – w3d Feb 14 '12 at 13:07
this did the trick. Thank you! – jnolte Apr 12 '12 at 20:51
@w3d, they may be two different sites, but FF is still broken in this respect: I have a site that has a 301 from www.mysite.com to mysite.com, and yet Firefox still only displays the favicon when the href is set to "mysite.com/favicon.ico"; – alldayremix Feb 20 at 17:52
I meant www.mysite.com/favicon.ico, argh! – alldayremix Feb 20 at 18:02
@alldayremix: Must admit, my comment above doesn't seem to be entirely relevant!? That does seem strange. However, I don't recall ever having had a problem with specifying a root-relative "/favicon.ico" href. I've just tried this in FF 17 and it appears to work OK for both www and non-www sites. Do you have a need to specify an absolute URL? Presumably you are including the protocol? Although the question was originally about a root-relative link. TIP: Surround links with backticks (code samples) to avoid SO processing it. – w3d Feb 20 at 19:39
show 1 more comment

I found that I had to clear my Firefox cache [CTRL]+[SHIFT]+[DEL], and then restart Firefox before I could see the favicon, which I put in the root of the web server and called favicon.ico.

share|improve this answer

This sounds like a configuration issue on your end which we can't solve without more information. Have you tried using an absolute URL instead of a relative one?

Example:

<link rel="shortcut icon" href="http://mydomain.com/images/favicon.ico" />
share|improve this answer

you can try to put the icon to the root.

share|improve this answer
downvoter, can you explain the reason ? – M. Utku ALTINKAYA Aug 23 '09 at 23:13

Perhaps the first slash in

href="/images/favicon.ico"
is causing a problem?

share|improve this answer
Why would this present a problem? – ceejayoz Aug 23 '09 at 23:31
1  
Because it is an absolute path, not a relative path. It assumes that the 'images' folder is at the topmost level of the file system, as opposed to "images/favicon.ico", which would indicate that the 'images' folder is relative to the current working directory. – David Aug 24 '09 at 4:43

Have you tried

<link rel="shortcut icon" href="images/favicon.ico" />

? What is the directory structure for www subdomain? Can you access other image files using the absolute path?

share|improve this answer

Fireworks often picks up the favicon.ico file automatically without any code, so long as it is the same folder as the document. Try moving your file up a level to avoid referencing issues.

share|improve this answer

This problem is annoying... I usually just add a 16x16 PNG favicon to solve this. Firefox's way to deal with favicons seems a bit odd and that workaround is, to me, the simplest. Hope this helps.

share|improve this answer

favicons are not used anymore starting with firefox 15 . See http://www.ghacks.net/2012/04/25/mozilla-to-remove-favicons-from-firefox-url-bar/

share|improve this answer
That is relating to the address bar. They are still present on the tabs, bookmarks, etc. – w3d Feb 20 at 19:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.