Reputation: 411
I am facing one issue with favicon.ico. Here is my link rel code which has been included in header portion.
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
The problem is, I can view the favicon in all browsers if the url starts with http://. When the address starts with https://, the favicon is not showing in IE browser. Is there anything that I need to do? Did I miss anything important to include?
Upvotes: 6
Views: 7274
Reputation: 1289
I had the same problem and fixed it by putting the following line in the head section of my html file:
<link rel="shortcut icon" href="">
Upvotes: 1