windows 通过Web.config添加mimetype映射

在Web.config里添加以下代码即可
  1. <configuration>
  2. <system.webServer>
  3. <staticContent>
  4. <!-- remove first in case they are defined in IIS already, which would cause a runtime error -->
  5. <remove fileExtension=".woff" />
  6. <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
  7. </staticContent>
  8. </system.webServer>
  9. </configuration>

参考:





原文地址:https://www.cnblogs.com/huangtailang/p/24bf21f30dcb570113e8633ebd78840b.html