IIS 8.5 Exibe o arquivo sem extensão da pasta específica

3

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.

    
por bUKaneer 04.09.2015 / 10:59

1 resposta

4

Você já tentou com apenas um ponto?

<mimeMap fileExtension="." mimeType="application/octet-stream" />

    
por 09.09.2015 / 16:56