gpt4 book ai didi

c# - .net Core - 具有自定义默认文件定义的静态文件

转载 作者:太空狗 更新时间:2023-10-29 22:29:49 27 4
gpt4 key购买 nike

我有以下项目层次结构:

-MyDotNetProject
...
L wwwroot
L angular
L src
L angulardev.html
L index.html

现在我想在启动应用程序时使用 angulardev.html 作为起点。

我尝试在 Startup.cs/Configure 中进行操作,但它不起作用。

DefaultFilesOptions defaultFilesOptions = new DefaultFilesOptions();
defaultFilesOptions.DefaultFileNames.Clear();
defaultFilesOptions.DefaultFileNames.Add("angulardev.html");
app.UseDefaultFiles(defaultFilesOptions);

var path = Path.Combine(env.ContentRootPath, "angular/src");
var provider = new PhysicalFileProvider(path);
var options = new StaticFileOptions();
options.RequestPath = "";
options.FileProvider = provider;
app.UseStaticFiles(options);

最佳答案

我用这个:

       app.Use(async (context, next) => {
await next();

if (context.Response.StatusCode == 404 &&
!Path.HasExtension(context.Request.Path.Value) &&
!context.Request.Path.Value.StartsWith("/api/"))
{
context.Request.Path = "/angulardev.html";

await next();
}
});

app.UseAuthentication();
app.UseDefaultFiles();
app.UseStaticFiles();
app.UseMvcWithDefaultRoute();

关于c# - .net Core - 具有自定义默认文件定义的静态文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46245252/

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