首页 > 网站 > WEB开发 > 正文

How to remove error about glyphicons-halflings-regular.woff2 not found

2024-04-27 15:13:08
字体:
来源:转载
供稿:网友

This PRoblem happens because IIS does not know about woff and woff2 file mime types.

Solution 1:

Add this lines in your web.config project:

 <system.webServer>  ...  </modules>    <staticContent>      <remove fileExtension=".woff" />      <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />      <remove fileExtension=".woff2" />      <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />    </staticContent>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表