Apache Nginx中Font Awesome在Firefox不显示 Apache、Nginx下Font Awesome在 Firefox 中不显示问题解决办法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Apache Nginx中Font Awesome在Firefox不显示 Apache、Nginx下Font Awesome在 Firefox 中不显示问题解决办法

  2021-03-19 我要评论
想了解Apache、Nginx下Font Awesome在 Firefox 中不显示问题解决办法的相关内容吗,在本文为您仔细讲解Apache Nginx中Font Awesome在Firefox不显示的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Apache,Nginx,FontAwesome,Firefox,不显示,下面大家一起来学习吧。

一、Nginx服务器解决方法

服务器使用的是 Nginx,要在响应的头部添加 Access-Control-Allow-Origin 字段,添加方法是用 add_header 指令:

配置例子:

复制代码 代码如下:

location /assets/ {
    gzip_static on;
    expires max;
    add_header Cache-Control public;
    add_header Access-Control-Allow-Origin *;
}

二、Apache服务器解决方法

Font Awesome (firefox无法显示 火狐无法显示)Cross domain (跨域问题) 

The problem

It seems that, for security reasons, Firefox simply don't allow you to use by default a font that is not hosted on your domain, not even on your subdomain. The CDN based websites can be also affected in this case.

The solution

After some investigations, I found out the workaround: set a Access-Control-Allow-Origin header to the font.

复制代码 代码如下:

<FilesMatch "\.(ttf|otf|eot|woff)$">
  <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
  </IfModule>
</FilesMatch>

Also, if you are using nginx as your webserver you will need to include the code below in your virtual host file:
复制代码 代码如下:

location ~* \.(eot|otf|ttf|woff)$ {
    add_header Access-Control-Allow-Origin *;
}

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们