Search code examples
htmlspring-mvcfavicon

Browser is not making any call for favicon


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


Solution

  • 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">