ASP.NET核心 - 提供静态文件

时间:2018-01-31 22:22:20

标签: c# asp.net-core static-files

我关注此文档但我遇到了问题: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/static-files

考虑我的目录结构:

wwwroot
    dist
        index.html

在我的创业课上,我有:

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
    }

    app.UseDefaultFiles();
    app.UseStaticFiles();
    app.UseStaticFiles(new StaticFileOptions
    {
        FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "dist"))
    });
}

当我启动应用程序时,我没有看到我的index.html页面,但如果我导航到<host>/dist/index.html

,我会这么做

如何配置此项以便ASP.NET自动将我从<host>

转到该页面

1 个答案:

答案 0 :(得分:5)

您已经创建了中间件或URL重写来为您完成工作。 ASP.NET Core并不是最聪明的,也不会为您手动执行操作。

您还应该在WebHostBuillder.UseWebRoot(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "dist"))文件中执行Program.cs

此外,这看起来像是this.

的副本