字体无法在服务器上加载?

时间:2016-01-02 20:24:14

标签: asp.net-mvc font-face

这两种字体都在本地工作,但在服务器elkwood工作和avenir没有工作,我不明白为什么。请看图片

我也试过了 font-family:" AvenirNextLTPro-Regular&#34 ;;     src:url(" /fonts/AvenirNextLTPro-Regular.otf");

screenshot details

1 个答案:

答案 0 :(得分:5)

IIS无法提供.otf文件的请求。我们需要明确告诉IIS这些是有效的文件类型。为此,请将此部分添加到<system.webServer>部分下的web.config。

<staticContent>    
  <mimeMap fileExtension=".otf" mimeType="font/otf" />
</staticContent>