網站是使用BootStrap框架實現,當站點發佈至伺服器(Windows Server 2008 R2)IIS之後,顯示下麵的異常: Insus.NET跑至相關目錄之下檢查,這些字體的文件是確實存在的。為什麼這樣呢? 令Insus.NET想起前些日子,解決視頻PM4的問題《在IIS啟用MP4》htt ...
網站是使用BootStrap框架實現,當站點發佈至伺服器(Windows Server 2008 R2)IIS之後,顯示下麵的異常:
Insus.NET跑至相關目錄之下檢查,這些字體的文件是確實存在的。
為什麼這樣呢? 令Insus.NET想起前些日子,解決視頻PM4的問題《在IIS啟用MP4》http://www.cnblogs.com/insus/p/5507493.html 肯定又是IIS沒有MIME Type的原因:
原web.config配置:
<system.webServer> <staticContent> <remove fileExtension=".woff"/> <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" /> <remove fileExtension=".woff2"/> <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff2" /> <remove fileExtension=".ttf" /> <mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" /> <remove fileExtension=".svg" /> <mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> <remove fileExtension=".otf" /> <mimeMap fileExtension=".otf" mimeType="application/x-font-opentype" /> <remove fileExtension=".eot" /> <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" /> </staticContent> </system.webServer>Source Code