8

我有一个带有 iframe 的页面,它显示了一个外部页面。外部页面配置为从我的服务器下载 CSS 文件。

在 CSS 中,我添加了一个@font-face选择器:

@font-face {
    font-family: "Special Font";
    src: url("<%= Request.Url.GetLeftPart(UriPartial.Authority) + "/fonts/specialfont.ttf" %>");
}

这会在 Chrome 中很好地下载并显示字体,但在 Firefox 中,它会下载字体,但拒绝使用它。做一点研究表明这个问题是一个跨域策略问题。这里提到的解决方案之一:

http://enable-cors.org/

是启用CORS标头。但是,它提供的解决方案是站点范围的:

<?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <system.webServer>
            <httpProtocol>
                <customHeaders>
                    <add name="Access-Control-Allow-Origin" value="*" />
                </customHeaders>
            </httpProtocol>
        </system.webServer>
</configuration>

而我只想为.TTF文件启用它。有没有办法通过使用 HttpHandler 或其他方法来做到这一点?

4

1 回答 1

13

您可以通过使用 web.config 中的location元素将配置规则限制到特定目录或文件来实现类似的目的。例如:

<configuration>
  <location path="fonts/specialfont.ttf">
    <system.webServer>
       <httpProtocol>
          <customHeaders>
             <add name="Access-Control-Allow-Origin" value="*" />
          </customHeaders>
       </httpProtocol>
    </system.webServer>
  </location>
</configuration>

尽管您可能希望为所有字体启用 CORS,例如<location path="fonts">.

这个问题的答案有几个例子location

于 2014-10-30T22:45:27.567 回答