1. 程式人生 > >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>

問題解覺 先給博主點個贊