Different favicons for same site

o hai guyz

New member
Jan 15, 2010
917
8
0
I'm using a favicon for my domain and I'd like to use a different one for a section of the site on the same domain. So:

- asdf.com: icon #1
- asdf.com/lol: icon #2
- asdf.com/haha: icon #3

I tried dropping different icons in the folders, but it always shows the icon from the highest level (the one in the root folder). Is this possible?
 


Although I don't know if it will work, you'll have to write a conditional statment if you have a dynamic site or replace on each page of a static site, add this to the head section:

Code:
<link rel="icon" 
      type="image/png" 
      href="http://example.com/myicon.png">
 
  • Like
Reactions: o hai guyz
Although I don't know if it will work, you'll have to write a conditional statment if you have a dynamic site or replace on each page of a static site, add this to the head section:

Code:
<link rel="icon" 
      type="image/png" 
      href="http://example.com/myicon.png">

Thanks, this worked