How can I define mime types on my Windows/IIS based site?
You can use a web.config file with the following:
<configuration> <system.webServer> <staticContent> <mimeMap fileExtension=".EXTENSION" mimeType="MIME/TYPE" /> </staticContent> </system.webServer> </configuration>
Example:<configuration> <system.webServer> <staticContent> <mimeMap fileExtension=".test" mimeType="text/html" /> </staticContent> </system.webServer> </configuration>


PRMWD WEB MASTERS



