显示此错误消息。
来自原点的字体' http://127.0.0.1'已被阻止加载 跨源资源共享策略:No' Access-Control-Allow-Origin' 标头出现在请求的资源上。起源' http://localhost' 因此不允许访问。
答案 0 :(得分:1)
在htaccess文件中添加此代码..
# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like "subdomain.example.com".
<IfModule mod_headers.c>
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css|css)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>