In the environment with basic authentication, icon fonts not showing.
Icon fonts are displayed in other browsers or environments without basic authentication. Also, after authentication, if access each page directly from the URL or browser reloading, the icon is not displayed, but if page transition from link click, the icon is displayed.
There is a difference in the response between direct access to the page and access by link click, so describe. Access by link click contains eot, woff, ttf font files in the response, but direct access contains only eot file.(I do not know if there is a relationship...)
Also, the next board confirmed.
Icon fonts not loading in IE11
However, the browser response header doesn't contain cache control.
Here's my @font-face:
@font-face {
font-family: 'FontAwesome';
src: url('../fonts/fontawesome-webfont.eot?v=4.6.3');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal
}
Do you have any other information you need to solve? Thanks for your thoughts.