Javascript

Bootstrap中glyphicons-halflings-regular.woff字体报404错notfound的解决方法

本文主要是介绍Bootstrap中glyphicons-halflings-regular.woff字体报404错notfound的解决方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 今天查看网站的源代码,发现有个glyphicons-halflings-regular.woff文件没有找到,因为我的网站使用了bootstrap的Glyphicons 字体图标,因此需要加载Glyphicons Halflings的相关文件,但是我的文件中明明有这个文件那怎么会报404错误呢?

查看了下博客上查到了解决方案 跟大家分享一下 在web.config 中添加如下代码段

 <system.webServer>
  <staticContent>
<remove fileExtension=".woff"/>
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
</staticContent>
 </system.webServer>

以上所述是小编给大家介绍的Bootstrap中glyphicons-halflings-regular.woff字体报404错notfound的解决方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对找一找教程网网站的支持!

这篇关于Bootstrap中glyphicons-halflings-regular.woff字体报404错notfound的解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!