IIS无法加载字体文件(*.woff,*.svg)的解决办法
Posted Jade
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS无法加载字体文件(*.woff,*.svg)的解决办法相关的知识,希望对你有一定的参考价值。
system.webServer节点中添加配置
<staticContent>
<remove fileExtension=".woff"/>
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
<remove fileExtension=".woff2"/>
<mimeMap fileExtension=".woff2" mimeType="application/x-font-woff2" />
<remove fileExtension=".ttf" />
<mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" />
<remove fileExtension=".svg" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<remove fileExtension=".otf" />
<mimeMap fileExtension=".otf" mimeType="application/x-font-opentype" />
<remove fileExtension=".eot" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
</staticContent>
以上是关于IIS无法加载字体文件(*.woff,*.svg)的解决办法的主要内容,如果未能解决你的问题,请参考以下文章
解决IIS Web部署 svg/woff/woff2字体 404错误
WinServer-IIS-svg/woff/woff2字体 404错误
解决Web部署 svg/woff/woff2字体 404错误
解决Web部署 svg/woff/woff2字体 404错误