我正在遵循此文档,但我遇到了困难:https://learn.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"))
});
}
当我启动应用程序时,我看不到我的索引.html页面,但如果我导航到<host>/dist/index.html
如何配置它,以便 ASP.NET 自动将我从<host>
带到该页面?
您将创建中间件或 URL 重写来为您完成工作。 ASP.NET Core不是最聪明的,它不会手动为你做事。
您还应该在Program.cs
文件中执行WebHostBuillder.UseWebRoot(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "dist"))
。
此外,这看起来像是这个的副本。