我关注此文档但我遇到了问题: 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>
?
答案 0 :(得分:5)
您已经创建了中间件或URL重写来为您完成工作。 ASP.NET Core并不是最聪明的,也不会为您手动执行操作。
您还应该在WebHostBuillder.UseWebRoot(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "dist"))
文件中执行Program.cs
。
此外,这看起来像是this.
的副本