fontawesome .woff uzantısı ve HTTP Error 404.3 - Not Found mime hatası
fontawesome .woff uzantısı ve HTTP Error 404.3 - Not Found mime hatası
fontawesome kullanılmış site yayına verildiğinde yukarıdaki durumla karşılaşılabilir. Bu durum web.config tarafından aşağıdaki kod eklenerek giderilebilir.
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<staticContent>
<remove fileExtension=".svg" />
<remove fileExtension=".eot" />
<remove fileExtension=".woff" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
</staticContent>
</system.webServer>