欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决 asp.net core 中下载 exe 文件返回 404

程序员文章站 2022-06-10 13:30:48
在 StartUp 中的 Configure 方法添加如下代码即可 原因是默认没有 exe 的 content-type。 ......

在 startup 中的 configure 方法添加如下代码即可

app.usestaticfiles(new staticfileoptions()
{
    contenttypeprovider = new fileextensioncontenttypeprovider()
    {
        mappings = {[".exe"] = "application/octect-stream"}
    }
});

原因是默认没有 exe 的 content-type。