Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Favicon in subdirectory all subdomain

My website is one big website, with many little projects in it. Each of the projects also have their own favicon.ico file (the one which is shown on the left hand side of the url bar), but even if I put a favicon.ico file inside a subdirectory, it will still not show up, and will use the favicon.ico file put at the root directory.

How do I solve this problem?

Lucas

share|improve this question

marked as duplicate by Will Apr 26 '12 at 3:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

You can set it on a per-page basis, like this:

<link rel="shortcut icon" href="http://example.com/myicon.ico" />

inside the <head>..</head> tags.

Setting it on a per directory basis does not work.

share|improve this answer
Oh ok. Thanks, but I already have > 100 pages, and it will be hard to do. – think123 Apr 25 '12 at 1:52

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