给定以下配置,ServiceStack 将呈现notfound
剃刀视图并在发生 NotFound 错误时返回 200 状态代码。
如何使用RazorHandler
来呈现notfound
视图并保持正确的 404 状态代码?
SetConfig(new EndpointHostConfig {
CustomHttpHandlers = {
{ HttpStatusCode.NotFound, new RazorHandler("/notfound") },
{ HttpStatusCode.Unauthorized, new RazorHandler("/login") },
}
});