Hello!
The issue is that the favicon does not appear when http redirect is active in IIS 8.5. My OS is windows server 2012 r2, the web browser is IE11.
What I do: I go to IIS 8.5,click on http redirection, check the first option, enter the http link and then apply. Run iisreset, clear IE cash, reload the page. The favicon.ico is in wwwroot folder.
What I've tried:
-Add mime type in IIS (".ico" = "image/x-icon" or ".ico" = "image/vnd.microsoft.icon")
-Add link in the page (link rel="icon" type="image/x-icon" href="/favicon.ico")
-Different icon generated by a web site.
Please help me!
Thanks
**[EDIT]**
This is how redirect is set in IIS:
--------------------------------
HTTP Redirect
Use the feature to specify rules for redirecting incoming requests to antoher file or URL.
V Redirect requests to this destination :
http://[dnsname]/[folder]/
Redirect Behavior
V Redirect all requests to exact destination (instead of relative to destination)
Only redirect requests to content in this directory (not subdirectories)
Status code :
Found (302)
---------------------------------
In the source page, it's same thing if I add or delete the link tag to the icon.
<html>
<head>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<head>
<html>