2

我在 apache 日志中不断收到 File Not Found 错误,如下所示:

[Sat Jun 08 14:05:34 2013] [error] [client 7x.9x.1x1.xx] File does not exist: /mnt/www/www.site.com/versions/live/assets/fonts/agendmedextcon.eot) format("embedded-opentype"), url(.., referer: http://www.site.com/Rest/Of/Url

同时我在css中有这个字体定义:

@font-face {
    font-family: 'Agenda Medium Condensed';
    src: url('../fonts/agendmedextcon.eot');
    src: url('../fonts/agendmedextcon.eot') format('embedded-opentype'),
         url('../fonts/agendmedextcon.woff') format('woff'),
         url('../fonts/agendmedextcon.ttf') format('truetype'),
         url('../fonts/agendmedextcon.svg#RomAgendaMediumExtraCondensedRegular') format('svg');
}

字体加载正常,我也没有在浏览器的控制台中发现错误。这些行仍然在污染错误日志,我仍然认为它们存在是有原因的。

您知道如何找到错误的来源吗?

4

1 回答 1

3

如果我没有提供具有正确 mime 类型的字体,或者如果它们是从没有正确 CORS 标头的 CDN(或任何外部服务器)提供的,我已经看到某些浏览器(主要是 Firefox iirc)报告了 404 错误。不确定这是否是您的问题,但值得一看

这是 mime 类型信息:http ://somethinginteractive.com/blog/2012/06/04/proper-mime-types-for-embedded-font-face-fonts/

和 CORS:https ://developer.mozilla.org/en-US/docs/HTTP/Access_control_CORS (Access-Control-Allow-Origin是你想要的)

希望能帮助到你

于 2013-06-08T13:37:22.617 回答