Cái fonts chữ của mình có đuôi .woff2 và .woff nó truy cập không được trên iis 8 của mình, trong khi file có trong hệ thống, các file đuôi khác thì truy cập bình thường, còn các đuôi woff nó không truy cập được báo lỗi dưới. Giúp mình với 404 - File or directory not found. The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.
Bạn truy cập vào web.config tìn tới <system.webServer> và thêm dữ liệu sao vào nhé Mã: <system.webServer> <staticContent> <clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00" /> <remove fileExtension=".woff" /> <remove fileExtension=".woff2" /> <mimeMap fileExtension=".woff" mimeType="application/x-font-woff" /> <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" /> </staticContent> </system.webServer>