即使在 localhost 中,我也无法在 firefox 中正确显示 font-awesome。我收到一个跨域错误,正是这里报告的内容。
解决这个问题的方法是将以下内容添加到 .htaccess 或直接添加到 apache config:
<FilesMatch "\.(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
但是我在 Google App Engine 中托管我的应用程序,那么如何在 GAE 中设置 Access-Control-Allow-Origin?