Você já tentou com apenas um ponto?
<mimeMap fileExtension="." mimeType="application/octet-stream" />
Eu tenho alguns arquivos que foram enviados para uma pasta chamada /Download
, no entanto, eles não têm extensão. File1
Eu tentei adicionar um arquivo /Download/Web.Config
com o seguinte especificado
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".*" mimeType="application/octet-stream" />
</staticContent>
</system.webServer>
</configuration>
Mas com isso, ainda recebo esse erro do IIS:
HTTP Error 404.17 - Not Found The requested content appears to be script and will not be served by the static file handler.
Most likely causes: The request matched a wildcard mime map. The request is mapped to the static file handler. If there were different pre-conditions, the request will map to a different handler.
Things you can try: If you want to serve this content as a static file, add an explicit MIME map.
Tags iis-8.5 static-files