0

该网站在这里: http ://rjdlee.com/projects/mobile/index.html

即使在我的本地副本中,我也遇到了一些字体在更改后不会刷新的问题。我已经检查了它试图读取字体的 url,它似乎是正确的。有什么不对?

这是代码:

@font-face {
    font-family: 'icons';
font-weight: normal;
    font-style: normal;
    src:url('../fonts/icons.eot?-gbp2x2');
    src:url('../fonts/icons.eot?#iefix-gbp2x2') format('embedded-opentype'),
        url('../fonts/icons.ttf?-gbp2x2') format('truetype'),
        url('../fonts/icons.woff?-gbp2x2') format('woff'),
        url('../fonts/icons.svg?-gbp2x2#icons') format('svg');
}

这是错误:

[16:21:58.083] 可下载字体:下载失败(字体系列:“图标”样式:正常重量:正常拉伸:正常 src 索引:1):状态=2147746065 来源:http ://rileedesign.com/projects/ mobile/fonts/icons.ttf?-gbp2x2 @ http://rileedesign.com/projects/mobile/css/main.css

4

2 回答 2

0

您有权访问您的 .htaccess 文件吗?如果某些文件类型被禁止/排除,则可能会发生这种情况。我之前遇到过这个问题,通过添加允许的字体类型来解决它,例如:

<FilesMatch ".*\.(js|JS|css|CSS|jpg|JPG|gif|GIF|png|PNG|swf|SWF|xsl|XSL|svg|eot|ttf|woff)$">
  Order Allow,Deny
  Allow from all
</FilesMatch>
于 2013-10-20T20:29:17.423 回答
0

原来问题出在我的托管服务提供商身上。

于 2013-11-16T03:04:18.533 回答