favicon automatically appears

Mutikasa

Power Member
Joined
May 23, 2011
Messages
589
Reaction score
216
So, i have bunch of landing pages. And I have favicon.ico in my domain root.
I've noticed that my favicon appears on all pages even when I don't link it. Is this some kind of default behaviour? If you have favicon in root it will appear everywhere?
 
This is default browser behavior. It will make request for root/favicon.ico automatically, unless you provide favicon location in meta tag.
 
I will first say that having a favicon in a Web page is a good thing (normally).
Try adding following between opening and closing <head> tag.

HTML:
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
 
Back
Top