ASP.NET 核心 - 提供静态文件
ASP.NET Core - serving static files
我正在关注此文档,但我被卡住了:
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/static-files
考虑我的目录结构:
wwwroot
dist
index.html
在我的初创公司 class 中,我有:
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>
转到该页面?
您需要创建中间件或 URL 重写来为您完成这项工作。 ASP.NET Core 不是最聪明的,它不会手动为您做事。
您还应该在 Program.cs
文件中执行 WebHostBuillder.UseWebRoot(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "dist"))
。
此外,这看起来像是 this.
的副本
我正在关注此文档,但我被卡住了: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/static-files
考虑我的目录结构:
wwwroot
dist
index.html
在我的初创公司 class 中,我有:
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>
转到该页面?
您需要创建中间件或 URL 重写来为您完成这项工作。 ASP.NET Core 不是最聪明的,它不会手动为您做事。
您还应该在 Program.cs
文件中执行 WebHostBuillder.UseWebRoot(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "dist"))
。
此外,这看起来像是 this.
的副本