1

I have an spring application and i want to show favicon image.
In my case browser is not making any call favicon image by itself.
I tried

<link rel="shortcut icon" href="<spring:url value="/assests/login/img/favicon.ico"/>"></link>

I also tried setting profile attribute in head

<head profile="http://www.w3.org/2005/10/profile">

in both cases browser is not making any call for favicon

Ravi Sahu
  • 890
  • 1
  • 11
  • 24

2 Answers2

1

Try this code

<link rel="shortcut icon" href="assests/login/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="assests/login/img/favicon.ico" type="image/x-icon">
Vel
  • 9,027
  • 6
  • 34
  • 66
0

What about this :

<link rel="shortcut icon" type="image/png" href="/assests/login/img/favicon.ico" />

or :

<link rel="icon" type="image/png" href="/assests/login/img/favicon.ico" />
Michaël
  • 3,679
  • 7
  • 39
  • 64