.woff2无法在Chrome中加载

.woff文件中有404个错误。 即使我已经按照适用于.woff2字体的MIME类型的指令将.woff添加到IIS中的MIME类型,但我仍然收到了404错误。 它适用于IE,但不适用于Chrome。 任何指针? 我无法将下面的内容添加到web.config中。

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

任何指针将不胜感激。


我认为这可能与IIS有关。 我的公司仍在使用IIS 7.5。 因此它不支持woff2。

由于IIS或web.config更改都无法解决问题。 我决定使用cdn,例如https://www.google.com/fonts#UsePlace:use/Collection:Roboto。 它有指导如何在那里使用字体。


尝试这个:

mimeType="font/woff2" 
链接地址: http://www.djcxy.com/p/47009.html

上一篇: .woff2 failed to load in chrome

下一篇: How to serve woff2 files from owin FileServer