首页 > Windows开发 > 详细

windows 通过Web.config添加mimetype映射

时间:2016-09-01 18:05:14      阅读:281      评论:0      收藏:0      [点我收藏+]
在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>

参考:





windows 通过Web.config添加mimetype映射

原文:http://www.cnblogs.com/huangtailang/p/24bf21f30dcb570113e8633ebd78840b.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!