gpt4 book ai didi

c# - 如何更改 .net core 中 index.html 的默认路径?

转载 作者:太空宇宙 更新时间:2023-11-03 12:09:18 25 4
gpt4 key购买 nike

我在 Angular Cli 中使用 .net core,所以 ngx 的默认结构是:

dist/project_name/index.html
src/index.html

等等。

我需要将默认路径从 wwwroot 更改为

wwwroot/dist/project_name/

如何更改.net core中index.html的默认路径?


实际上,我愿意为 dev 和 prod 模式使用 .net 设置两个路径变量,并将其更改为在 ngx 模式 ng serve 和 ng build 中使用它。也许你可以给我一些最佳实践建议,我该怎么做。

最佳答案

在启动时的 Configure 方法中,您可以像这样提供 StaticFileOptions:

    app.UseStaticFiles(new StaticFileOptions
{
FileProvider = new PhysicalFileProvider(
Path.Combine(Directory.GetCurrentDirectory(), "MyStaticFiles")),
RequestPath = "/StaticFiles"
});

进一步阅读: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/static-files?view=aspnetcore-2.1

关于c# - 如何更改 .net core 中 index.html 的默认路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53216623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com