解决 asp.net core 中下载 exe 文件返回 404时间:2022-12-25 23:20:01 在 StartUp 中的 Configure 方法添加如下代码即可 app.UseStaticFiles(new StaticFileOptions() { ContentTypeProvider = new FileExtensionContentTypeProvider() { Mappings = {[".exe"] = "application/octect-stream"} } }); 原因是默认没有 exe 的 content-type。