我使用Wordpress开发了一个网站。我根据现有的二十四年创建了自定义主题。
我正在使用自定义字体(.eot,.otf,.ttf),除了Firefox之外,它们在每个浏览器中都能完美运行。
这是我在控制台中获得的内容:
我已经添加了这个:
<FilesMatch "\.(ttf|ttc|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
AddType application/vnd.ms-fontobject eot
AddType font/truetype ttf
AddType font/opentype otf
AddType application/x-font-woff woff
到我的apache的配置文件。
我的字体位于/ public_html / fonts
我的css看起来像这样:
@font-face {
font-family: Technic;
src: url(/fonts/technic.eot); /* IE9 Compat Modes */
src: url(/fonts/technic.otf);
}
我错过了什么?
谢谢!