首页 > 代码库 > .woff HTTP GET 404 (Not Found)

.woff HTTP GET 404 (Not Found)

原因:IIS没有添加woff字体的MIME类型,导致HTTP请求404 Not Found错误

解决办法:

1、在web.config中配置

  <system.webServer>        <staticContent>      <mimeMap fileExtension=".woff" mimeType="font/x-font-woff" />          </staticContent>  </system.webServer>

2、在IIS中添加woff字体的MIME类型

扩展名:.woffMIME类型为:font/x-font-woff

备注:如果第一种方法出现错误:在唯一密钥属性“fileExtension”设置为“.woff”时,无法添加类型为“mimeMap”的重复集合项

请再添加:<remove fileExtension=".woff" />

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

 

.woff HTTP GET 404 (Not Found)