解決 asp.net core 中下載 exe 文件返回 404

在 StartUp 中的 Configure 方法添加以下代碼便可app

app.UseStaticFiles(new StaticFileOptions()
{
    ContentTypeProvider = new FileExtensionContentTypeProvider()
    {
        Mappings = {[".exe"] = "application/octect-stream"}
    }
});

緣由是默認沒有 exe 的 content-type。ide

相關文章
相關標籤/搜索