I'm using @font-face on my company's site and it works/looks great. Except Firefox and Chrome will throw a 404 error on the .woff file. IE does not throw the error. I have the fonts located at the root but I've tried with the fonts in the css folder and even giving the entire url for the font. If remove those fonts from my css file I don't get a 404 so I know it's not a syntax error.

Also, I used fontsquirrels tool to create the @font-face fonts and code:

@font-face 
{
font-family: 'LaurenCBrownRegular';
src: url('/laurencb-webfont.eot');
src: local('☺'), 
     url('/laurencb-webfont.woff') format('woff'), 
     url('/laurencb-webfont.ttf') format('truetype'), 
     url('/laurencb-webfont.svg#webfontaaFhOfws') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face 
{
font-family: 'FontinSansRegular';
src: url('/fontin_sans_r_45b-webfont.eot');
src: local('☺'), 
     url('/fontin_sans_r_45b-webfont.woff') format('woff'), 
     url('/fontin_sans_r_45b-webfont.ttf') format('truetype'), 
     url('/fontin_sans_r_45b-webfont.svg#webfontKJHTwWCi') format('svg');
font-weight: normal;
font-style: normal;
}
link|improve this question

58% accept rate
what version do you have for firefox and chrome? Gecko 1.9.2 (Firefox 3.6) adds support for WOFF. – Sotiris Oct 25 '10 at 15:03
FF 3.6 and Chrome 8 dev – dcp3450 Oct 25 '10 at 15:04
feedback

6 Answers

I was experiencing this same symptom - 404 on woff files in Chrome - and was running an application on a Windows Server with IIS 6.

If you are in the same situation you can fix it by doing the following:

"Simply add the following MIME type declarations via IIS Manager (HTTP Headers tab of website properties): .woff application/x-woff"

enter image description here

Thanks to Seb Duggan: http://sebduggan.com/posts/serving-web-fonts-from-iis

link|improve this answer
1  
Winner Winner Chicken Dinner! Worked for me. – Khalid Abuhakmeh Oct 21 '11 at 12:17
Yeah, this works. I always forget to update my production server with the darn mime type. The problem doesn't present itself in IE typically because it will load a .eot file first, if available. In Firefox I get a 404 if this mime type is not in place for .woff. – Corgalore Dec 15 '11 at 17:13
thank you very much helped me :-) – Liran Apr 17 at 14:40
feedback
up vote 3 down vote accepted

Solved it:

I had to use Mo'Bulletproofer method

link|improve this answer
Does that mean you're not using WOFF anymore? Could it be that your webserver isn't properly configured to serve WOFF files? E.g. see this: stackoverflow.com/questions/3594823/mime-type-for-woff-fonts/… – mercator Oct 25 '10 at 15:45
no the woff is encoded with base64 – dcp3450 Oct 25 '10 at 15:48
I tested the font with the encoding with other machines. Displays fine and no 404 error. – dcp3450 Oct 25 '10 at 15:55
Can you post your new css? – egrunin Oct 25 '10 at 15:58
It wont let me. The encoding is way to long. It's explained here: paulirish.com/2010/font-face-gotchas – dcp3450 Oct 25 '10 at 16:04
feedback

I'm not having any problems, but my code looks a little different:

@font-face
{
    font-family: 'NewAthenaUnicodeRegular';
    src: url('fonts/new_athena_unicode.eot');
    src: local('New Athena Unicode Regular'), 
        local('NewAthenaUnicode'), 
        url('fonts/new_athena_unicode.woff') format('woff'), 
        url('fonts/new_athena_unicode.ttf') format('truetype'), 
        url('fonts/new_athena_unicode.svg#NewAthenaUnicode') format('svg');
}

Are your directory names correct? Why does 'local' have that funny face? And is this happening with all your fonts, or just these?

link|improve this answer
i have my fonts on the root so my url is "/fontname.ext". The smiley is put there by fontsquirrel. However it's explained here: paulirish.com/2009/bulletproof-font-face-implementation-syntax under "Bulletproof @font-face: Smiley variation" – dcp3450 Oct 25 '10 at 15:09
Smiley face: see paulirish.com/2010/font-face-gotchas/#smiley – Matthew Wilson Oct 25 '10 at 15:10
I've also tried the "url(//:) format('no404')" fix but that didn't have any effect. The odd thing is, the fonts work in firefox and chrome. They – dcp3450 Oct 25 '10 at 15:14
feedback

This might be obvious, but it has tripped me up with 404s a number of times... Make sure the fonts folder permissions are set correctly.

link|improve this answer
feedback

Actually the @Ian Robinson answer works well but Chrome will continue complain with that message : "Resource interpreted as Font but transferred with MIME type application/x-woff"

If you get that, you can change from

application/x-woff

to

application/x-font-woff

and you will not have any Chrome console errors anymore !

(tested on Chrome 17)

link|improve this answer
feedback

Also check you URL rewriter. It may throw 404 if something "weird" was found.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.