IE Bootstrap fonts (icons) not loaded

前提是你 提交于 2019-12-06 01:38:39
Canu667

Looks like a problem with Security or Cache Settings -> check this thread for possible solution:

bootstrap 3.2.0 glyphicons are not displaying in internet explorer

user1767316

Spring-Boot is generating cache-invalidating headers in HTTP responses:

Cache-Control :"no-cache, no-store, max-age=0, must-revalidate"

and

pragma: "no-cache"

The solution is to hide those headers to the browser.

I used nginx as a proxy, adding the folowing commands the https proxied location:

  proxy_hide_header Cache-Control;
  proxy_hide_header Pragma; 

See here for details with nginx.

Using apache httpd, the syntax is here

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!