Why is @font-face throwing a 404 error on woff files?
Asked Answered
D

14

427

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;
}
Delfinadelfine answered 25/10, 2010 at 14:56 Comment(2)
what version do you have for firefox and chrome? Gecko 1.9.2 (Firefox 3.6) adds support for WOFF.Crouton
Try converting into the OTF into Woff again. I had a similar issue and the file parsing was corrupt. This is a good site to convert into different types of font. onlinefontconverter.comVolsung
A
731

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:

Solution 1

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

Update: according to MIME Types for woff fonts and Grsmto the actual MIME type is application/x-font-woff (for Chrome at least). x-woff will fix Chrome 404s, x-font-woff will fix Chrome warnings.

As of 2017: Woff fonts have now been standardised as part of the RFC8081 specification to the mime type font/woff and font/woff2.

IIS 6 MIME Types

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

Solution 2

You can also add the MIME types in the web config:

  <system.webServer>
    <staticContent>
      <remove fileExtension=".woff" /> <!-- In case IIS already has this mime type -->
      <mimeMap fileExtension=".woff" mimeType="font/woff" />
    </staticContent>    
  </system.webServer>
Audwen answered 10/9, 2011 at 20:51 Comment(13)
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.Alpers
Same happens with IIS7 as well. Thanks for the solution and +1 for including the config file version as well. Cheers!Aideaidedecamp
Okay, I take that back... still getting errors. There are two answers here... which is the correct one? x-woff or x-font-woff? Both seem to still error out in chrome.Aideaidedecamp
Could I create this web.config file next to css files (Don't have access to site's root directory). Would it work?Zorn
Thank you very much. I would like to add that your xml is correct, but the screenshot is not because it should be x-font-woff exactly or font-woff, but not x-woff.Wall
Note that you may get an error Cannot add duplicate collection entry of type ‘mimeMap’ with unique key attribute ‘fileExtension’... due to a conflict with the applicationhost.config file. You can fix this by adding <remove fileExtension=".woff" /> right before you specify the new mimeMap in your web.config file, to remove the false duplicate.Demars
Pete's issue bit me before I saw his comment, so I edited the answer to avoid having other people run into the same problem.Allergist
If you're deploying an app via Web Deploy add the MIME type to Web.config; apparently the setting is saved in Web.config anyways.Coccidiosis
The MIME type has been standardized as application/font-woff.Reword
This did the trick! If you have the same issue but with .woff2 file just add another MIME type (or config) with that extensionRivalry
This is a clean solution and working well but as the @Sunil's answer above you should also include woff2 format to your answer, since both of the format has 404 problem on IIS server.Beefcake
Looks like the specification has changed (again). Your advice for application/x-font-woff is now out of date, as of RFC 8081 the correct mime type is now font/woff and font/woff2. See the updated answer in your linked questionDollarfish
This solution didn't work for me. What did the trick for me was: hotcakescommerce.zendesk.com/hc/en-us/articles/…Benbena
K
59

The answer to this post was very helpful and a big time saver. However, I found that when using FontAwesome 4.50, I had to add an additional configuration for woff2 type of extension as shown below else requests for woff2 type was giving a 404 error in Chrome's Developer Tools under Console> Errors.

According to the comment by S.Serp, the below configuration should be put within <system.webServer> tag.

<staticContent>
  <remove fileExtension=".woff" />
  <!-- In case IIS already has this mime type -->
  <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
  <remove fileExtension=".woff2" />
  <!-- In case IIS already has this mime type -->
  <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff2" />
</staticContent>
Kingofarms answered 23/11, 2015 at 16:54 Comment(2)
and your mentioned tag <staticContent> must be inside a <system.webServer> tagCoruscate
working perfectly fine, reporting from Windows Server 2012 r2, ASP.Net MVC5.Beefcake
M
44

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)

Middendorf answered 28/2, 2012 at 14:58 Comment(4)
Where do you change this? In the browser or on the server?Canonist
As explained in the answer above, it must be o the server. This solution is for Windows Server with IIS 6.Middendorf
chrome is still complaining for me with x-font-woffLevalloisian
To re-iterate my comment: Looks like the specification has changed (again). Your advice for application/x-font-woff is now out of date, as of RFC 8081 the correct mime type is now font/woff and font/woff2. See the updated answer in your linked questionDollarfish
G
16

Solution for IIS7

I also came across the same issue. I think doing this configuration from the server level would be better since it applies for all the websites.

  1. Go to IIS root node and double-click the "MIME Types" configuration option

  2. Click "Add" link in the Actions panel on the top right.

  3. This will bring up a dialog. Add .woff file extension and specify "application/x-font-woff" as the corresponding MIME type.

Add MIME Type for .woff file name extension

Go to MIME Types

Add MIME Type

Here is what I did to solve the issue in IIS 7

Gelhar answered 10/1, 2014 at 10:28 Comment(3)
Note that link-only answers are discouraged, SO answers should be the end-point of a search for a solution (vs. yet another stopover of references, which tend to get stale over time). Please consider adding a stand-alone synopsis here, keeping the link as a reference.Corse
@Corse - Updated the answer with details and removed the link.Gelhar
"I think doing this configuration from the server level would be better since it applies for all the websites." - well, that really depends. If you are dealing with a corporate server, which possibly runs several internal apps, yes, you are right. On the other hand, if you run a public-facing website, which is distributed over several servers, the web.config method wins in terms of "consistency" (i.e. it will be there, you can't forget to configure it on one server).Conquian
D
10

In addition to Ian's answer, I had to allow the font extensions in the request filtering module to make it work.

<system.webServer>
  <staticContent>
    <remove fileExtension=".woff" />
    <remove fileExtension=".woff2" />
    <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" />
    <mimeMap fileExtension=".woff2" mimeType="application/x-font-woff" />
  </staticContent>
  <security>
      <requestFiltering>
          <fileExtensions>
              <add fileExtension=".woff" allowed="true" />
              <add fileExtension=".ttf" allowed="true" />
              <add fileExtension=".woff2" allowed="true" />
          </fileExtensions>
      </requestFiltering>
  </security>    
</system.webServer>
Diaphragm answered 2/12, 2015 at 9:16 Comment(0)
V
8

Run IIS Server Manager (run command : inetmgr) Open Mime Types and add following

File name extension: .woff

MIME type: application/octet-stream

Vareck answered 11/11, 2014 at 8:39 Comment(0)
N
2

I tried a ton of things around permissions, mime types, etc, but for me it ended up being that the web.config had removed the Static file handler in IIS, and then explicitly added it back in for directories that would have static files. As soon as I added a location node for my directory and added the handler back, the requests stopped getting 404s.

Negro answered 11/11, 2014 at 15:36 Comment(0)
T
1

If you are using CodeIgniter under IIS7 :

In your web.config file, add woff to the pattern

<rule name="Rewrite CI Index">
  <match url=".*" />
    <conditions>
      <add input="{REQUEST_FILENAME}" pattern="css|js|jpg|jpeg|png|gif|ico|htm|html|woff" negate="true" />
    </conditions>
    <action type="Rewrite" url="index.php/{R:0}" />
 </rule>

Hope it helps !

Trabeated answered 3/3, 2015 at 13:12 Comment(0)
W
0

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.

Waisted answered 19/11, 2011 at 18:24 Comment(0)
P
0

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

Pericope answered 29/3, 2012 at 11:3 Comment(0)
H
0

If you dont have access to your webserver config, you can also just RENAME the font file so that it ends in svg (but retain the format). Works fine for me in Chrome and Firefox.

Haemoglobin answered 19/2, 2015 at 11:30 Comment(0)
C
0

If still not works after adding MIME types, please check whether "Anonymous Authentication" is enable in Authentication section in the site and make sure to select "Application pool identity" as per the given screen shot.

enter image description here

Canea answered 9/5, 2017 at 11:5 Comment(0)
D
-1

Solved it:

I had to use Mo'Bulletproofer method

Delfinadelfine answered 25/10, 2010 at 15:27 Comment(4)
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: https://mcmap.net/q/73174/-mime-type-for-woff-fonts/…Panhellenic
I tested the font with the encoding with other machines. Displays fine and no 404 error.Delfinadelfine
It wont let me. The encoding is way to long. It's explained here: paulirish.com/2010/font-face-gotchasDelfinadelfine
The link in the answer does not exist anymore.Matrass
I
-1

IIS Mime Type: .woff font/x-woff (not application/x-woff, or application/x-font-woff)

Iconoduly answered 5/6, 2015 at 13:33 Comment(2)
Can you please extend your answer and provide detail about how it solves problem.Landlordism
I have now pointed this out to the accepted answer.Dollarfish

© 2022 - 2024 — McMap. All rights reserved.