我在我公司的网站上使用@font-face,它工作/看起来很棒。除了Firefox和Chrome会在。woff文件上抛出404错误。IE不会抛出错误。我有字体位于根,但我已经尝试了css文件夹中的字体,甚至给出字体的整个url。如果从我的css文件中删除这些字体,我不会得到404,所以我知道这不是语法错误。

另外,我使用fontsquirrel工具创建@font-face字体和代码:

@font-face {
  font-family: 'LaurenCBrownRegular';
  src: url('/laurencb-webfont.eot');
  src: local('☺'), 
    url('/laurencb-webfont.woff') format('woff'), 
    url('/laurencb-webfont.ttf') format('truetype'), 
    url('/laurencb-webfont.svg#webfontaaFhOfws') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FontinSansRegular';
  src: url('/fontin_sans_r_45b-webfont.eot');
  src: local('☺'), 
    url('/fontin_sans_r_45b-webfont.woff') format('woff'), 
    url('/fontin_sans_r_45b-webfont.ttf') format('truetype'), 
    url('/fontin_sans_r_45b-webfont.svg#webfontKJHTwWCi') format('svg');
  font-weight: normal;
  font-style: normal;
}

当前回答

还要检查你的URL改写器。如果发现一些“奇怪”的东西,它可能会抛出404。

其他回答

实际上@Ian Robinson的回答很好,但Chrome会继续抱怨这条消息: 资源解释为字体,但传输与MIME类型应用程序/x-woff

如果你得到了这个,你就可以从

应用程序/ x-woff

to

应用程序/ x-font-woff

和你将不再有任何Chrome控制台错误!

(在Chrome 17上测试)

除了Ian的回答之外,我还必须允许请求过滤模块中的字体扩展使其工作。

<system.webServer>
  <staticContent>
    <remove fileExtension=".woff" />
    <remove fileExtension=".woff2" />
    <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
    <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff" />
  </staticContent>
  <security>
      <requestFiltering>
          <fileExtensions>
              <add fileExtension=".woff" allowed="true" />
              <add fileExtension=".ttf" allowed="true" />
              <add fileExtension=".woff2" allowed="true" />
          </fileExtensions>
      </requestFiltering>
  </security>    
</system.webServer>

我尝试了很多关于权限,mime类型等的东西,但对我来说,它最终是网络。config已经删除了IIS中的静态文件处理程序,然后显式地将其添加到包含静态文件的目录中。当我为我的目录添加一个位置节点并重新添加处理程序时,请求就不再得到404。

这可能是显而易见的,但它已经让我在404上摔倒了很多次……确保字体文件夹权限设置正确。

我遇到了同样的症状-在Chrome中的woff文件上出现404 -并且正在IIS 6的Windows服务器上运行一个应用程序。

如果你也有同样的情况,你可以通过以下方法来解决:

解决方案1

简单地通过IIS管理器(网站属性的HTTP Headers选项卡)添加以下MIME类型声明:.woff应用程序/x-woff

更新:根据MIME类型为woff字体和Grsmto实际的MIME类型是应用程序/x-font-woff (Chrome至少)。x-woff将修复Chrome 404, x-font-woff将修复Chrome警告。

截至2017年:Woff字体现在已经作为RFC8081规范的一部分标准化为mime类型font/ Woff和font/woff2。

感谢Seb Duggan: http://sebduggan.com/posts/serving-web-fonts-from-iis

解决方案2

你也可以在web配置中添加MIME类型:

  <system.webServer>
    <staticContent>
      <remove fileExtension=".woff" /> <!-- In case IIS already has this mime type -->
      <mimeMap fileExtension=".woff" mimeType="font/woff" />
    </staticContent>    
  </system.webServer>