Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
You're most likely coming up against this IE bug. – DCoder Sep 18 '12 at 16:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.