Warning: Undefined array key "url" in /volume1/web_packages/wordpress/wp-content/plugins/wpforms-lite/src/Forms/IconChoices.php on line 124 Warning: Undefined array key "path" in /volume1/web_packages/wordpress/wp-content/plugins/wpforms-lite/src/Forms/IconChoices.php on line 125 Add mime type to web.config ASP.NET – Sarmad Aljazrawi

Add mime type to web.config ASP.NET

To add mime-type to web.config simply add the following lines to System.WebServer section in web.config:

 

<system.webServer>
	<staticContent>
	  <remove fileExtension=".otf" />
	  <mimeMap fileExtension=".otf" mimeType="application/x-font-otf" />
	</staticContent>
</system.webServer>

Add a Comment