6

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?

Vasethvan
  • 391
  • 1
  • 4
  • 12
  • 2
    http://stackoverflow.com/questions/12154986/favicon-does-not-work-with-ssl http://stackoverflow.com/questions/7324456/favicon-not-showing-up – WhiteLine Jun 19 '14 at 07:22
  • Could you give the URL of your site for analysis? – philippe_b Jun 19 '14 at 07:39
  • Actually the url can't be viewable out of our closed secured network. Sorry. Let me know if you can able to figure out what might be the root cause of above mentioned issue. Thanks dude. – Vasethvan Jun 20 '14 at 11:23

1 Answers1

1

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="">
Marcello
  • 1,099
  • 14
  • 18