xml 在ASP.NET项目的Web.config中定义Web字体Mime类型,以确保Web服务器正确处理为您的字体提供服务。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 在ASP.NET项目的Web.config中定义Web字体Mime类型,以确保Web服务器正确处理为您的字体提供服务。相关的知识,希望对你有一定的参考价值。

  <system.webServer>
    <staticContent>
      <!-- Remove any potential Web Server Settings for Web Fonts to be used -->
      <remove fileExtension=".eot" />
      <remove fileExtension=".otf" />
      <remove fileExtension=".ttf" />
      <remove fileExtension=".woff" />
      <remove fileExtension=".woff2" />
      
      <!-- Define Web Font Mime Types that will be used -->
      <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
      <mimeMap fileExtension=".otf" mimeType="application/font-sfnt" />
      <mimeMap fileExtension=".ttf" mimeType="application/font-sfnt" />
      <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
      <mimeMap fileExtension=".woff2" mimeType="font/woff2" />
      
      <!-- Define SVG Mime Type (could be used for Images or Fonts) -->
      <remove fileExtension=".svg" />
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
    </staticContent>
  </system.webServer>

以上是关于xml 在ASP.NET项目的Web.config中定义Web字体Mime类型,以确保Web服务器正确处理为您的字体提供服务。的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET WebService 仅在使用 Http Get 但 web.config 设置正确时错误地返回 XML 而不是 JSON

在 Asp.Net Core App 中访问 Web.config 设置?

ASP.NET配置文件Web.config 详细解释

ASP.NET MVC web.config(多个)问题

asp.net网站 两个文件夹 两个web.config怎么处理

如何在本地安装 ASP.NET Web 表单项目?