我正在为我的网站使用 webfont(使用 Spring 为 Apache Tomcat 6 服务器制作)。我将我的字体包含在我的css文件中,字体为:
@font-face{
font-family:'FontAwesome';
src:url('fonts/fontawesome-webfont.eot?v=3.0.1');
src:url('fonts/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
url('fonts/fontawesome-webfont.woff?v=3.0.1') format('woff'),
url('fonts/fontawesome-webfont.ttf?v=3.0.1') format('truetype');
font-weight:normal;
font-style:normal }
这个 css 在“layout.jsp”文件中被调用,该文件由所有其余的 jsp 页面调用,具有以下内容:
<link href="<c:url value='/styles/font-awesome.min.css'/>" rel="stylesheet" type="text/css"/>
当我通过 http:///webSite 在内部访问我的网站时,这适用于每个浏览器
但是,我们还有一个 Apache 服务器,它通过 URL https:/// 中的 SSL(使用安全证书)为网站提供服务,该 URL 重定向到以前的 URL。使用 SSL-https 配置时,Web 在每个浏览器中都运行良好,但是在 IE8 和 IE9 中都没有加载字体。
这是: - 通过 http:字体在每个浏览器中加载良好,包括 IE8 和 IE9 - 通过 https:字体在每个浏览器中加载良好,但 IE8 和 IE9
可以随时从浏览器访问该字体。也就是说,如果我写了文件的路径,我可以毫无问题地下载它。更重要的是,在资源管理器的开发人员工具下,在网络选项卡上,我可以看到字体已正确下载(状态:200)。
我尝试使用其 byte64 编码将我的字体完全包含在我的 CSS 中,而不是使用 fontSquirrel 生成器的文件路径:
@font-face {
font-family: 'fontawesomeregular';
src: url('fonts/fontawesome-webfont.eot');
}
@font-face {
font-family: 'fontawesomeregular';
src: url(data:application/x-font-woff;charset=utf-8;base64,[BYTE64_STRING]) format('woff'),
url('fonts/fontawesome-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
这样做,字体在 IE9 中加载得很好,但在 IE8 中却没有。起初,我认为这可能是由于 URL 的 32Kb 限制造成的。因此,我减少了字体的字符集以将其大小减小到大约 20kb,但在 IE8 中仍然没有运气。
有什么帮助吗?