我已从源站点下载了FontAwesome zip。 并在我的网站中包含font-awesome.css文件。
Ealier图标显示完美,现在图标不会出现,显示以下错误。我可以知道问题的原因。
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://www.traderstree.com/application/views/scripts/templates/clothing-3/includes/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0. (Reason: CORS header ‘Access-Control-Allow-Origin’ missing).
我的网站:traderstree.com
答案 0 :(得分:10)
在你的.htaccess中试试这个:
<FilesMatch "\.(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
并确保使用&#34; sudo a2enmod header&#34;启用它。并重新启动Apache。