font-awesome 在 IE 11 無法顯示的解決方式

您是否在ie 11 看不到 font-awesome 的icon 文字呢?


現在只要在主機端做以下事情,就解決嘍
若您是使用 Apache 為 webserver 的話,請在你的網站專案根目錄中加入 .haccess 檔案
內容如下:
<FilesMatch "\.(ttf|otf|eot|woff)$">
  <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
  </IfModule>
</FilesMatch>


如果你是使用 Nginx,請在你的 virtual host 加入以下程式:

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


沒有留言:

張貼留言