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>

参考:





posted @ 2016-09-01 16:47  HTL  阅读(2362)  评论(0编辑  收藏  举报
htl