2016-07-21 67 views

回答

1

只要你需要WOFF和woff2 MIME类型添加到您的web.config中或直接加入我的代码的文件夹结构在您的网络服务器配置文件中

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

对不起,我错把你的黑暗主题为Visual Studio和我还以为你是用ASP.NET

我离开这个代码片段,因为同样的问题可以通过ASP.NET用户面临

+1

谢谢!!工作完美! – monstro