vote up 0 vote down star

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?

flag
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 at 16:16

5 Answers

vote up 0 vote down

you can try to put the icon to the root.

link|flag
downvoter, can you explain the reason ? – M. Utku ALTINKAYA Aug 23 at 23:13
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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?

link|flag
vote up 1 vote down

Perhaps the first slash in

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

link|flag
Why would this present a problem? – ceejayoz Aug 23 at 23:31
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 at 4:43
vote up 0 vote down

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" />
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.