I fund this solution for @font-face issue on servers Why is @font-face throwing a 404 error on woff files? fixed mime types by adding them to .htaccsess
as
<FilesMatch "\.(eot|otf|woff|ttf)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
AddType font/ttf .ttf
AddType font/eot .eot
AddType font/otf .otf
AddType font/woff .woff
fonts do display properly in all browsers but server error log says
File does not exist: /xxx/xxx/xxx/xx/xx/css/BebasNeue-webfont.woff') format('woff'),url('BebasNeue-webfont.ttf') format('truetype'),url('BebasNeue-webfont.svg, referer: mydomanname.com
files are there 100% , and open with direct link , only issue I migh see is that my css file is compressed and this might be trowing an error
@font-face{font-family:'BebasNeueRegular';src:url('BebasNeue-webfont.eot');src:url('BebasNeue-webfont.woff') format('woff'),url('BebasNeue-webfont.ttf') format('truetype'),url('BebasNeue-webfont.svg#BebasNeueRegular') format('svg');font-weight:normal;font-style:normal}
uncompressed it would be like
@font-face {
font-family:'BebasNeueRegular';
src:url('BebasNeue-webfont.eot');
src:url('BebasNeue-webfont.woff') format('woff'), url('BebasNeue-webfont.ttf') format('truetype'), url('BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
font-weight:normal;
font-style:normal
}
can someone please shed some light on this issue.
Thank you!