I am writing a simple webpage located at the root directory of the server with a shortcut icon located at "/favicon.ico", but my browser never requests this favicon.ico. I have included the following in the html:
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
When I open up the network tab of the developer tools, I see the request for 192.168.0.1 (the webpage itself), but no subsequent request for the icon. Clearing the cache and enabling "disable cache" does nothing to change the behavior.
There are no errors appearing in the developer console and everything else seems to be working fine.
Edit:
I updated the link to the following as per the post by Jean-Francois and was still having the same issue:
<link href="favicon.ico" rel="icon" type="image/x-icon"/>