gpt4 book ai didi

c# - 如果路径以 '/api' 开头并且存在映射为后备的文件,如何返回 404?

转载 作者:行者123 更新时间:2023-12-03 08:05:37 25 4
gpt4 key购买 nike

我有一个 ASP.NET Core 6.0 应用程序:

  • WeatherForecastController
  • index.html 位于 wwwroot 文件夹中。

我已将 index.html 配置为文件后备。这是program.csmain方法;

public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
var app = builder.Build();

// Configure the HTTP request pipeline.

app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.UseStaticFiles();
app.MapFallbackToFile("index.html");
app.Run();
}

path/api 开头并且没有匹配的 Controller 操作时,我想返回 404。

我尝试在 app.MapControllers 之后添加中间件,但中间件在调用 Controller 之前执行,并且应用程序在尝试调用 API 时始终返回 404。

public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
var app = builder.Build();

// Configure the HTTP request pipeline.

app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.UseApiNotFound();
app.UseStaticFiles();
app.MapFallbackToFile("index.html");
app.Run();
}

这是中间件:

public class ApiNotFoundMiddleware
{

private readonly RequestDelegate next;
public ApiNotFoundMiddleware(RequestDelegate next)
{
this.next = next;
}

private static PathString prefix = "/api";

public Task InvokeAsync(HttpContext context)
{
if (context.Request.Path.StartsWithSegments(prefix))
{
context.Response.StatusCode = (int)HttpStatusCode.NotFound;
return Task.CompletedTask;
}
else
{
return this.next(context);
}
}
}

所以

如果路径以“/api”开头,没有匹配的 Controller 操作并且有一个映射为后备的文件,如何返回 404?

有没有办法将后备文件限制为不以 /api 开头的路径

最佳答案

您可以在 Progam.cs 或 Startup.cs 中针对不同条件使用不同的 IApplicationBuilder:

例如:

app.MapWhen(ctx => !ctx.Request.Path.StartsWithSegments("/api"), appBuilder =>
{
appBuilder.UseRouting();
appBuilder.UseEndpoints(ep =>
{
ep.MapFallbackToFile("index.html");
});
});

关于c# - 如果路径以 '/api' 开头并且存在映射为后备的文件,如何返回 404?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72460486/

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