When I redirect the GET method in middleware using asp net core it works fine. But When I want to redirect the post method I accept the method not allowed(405) error. Here is my redirect code in the startup.cs(Configure method):
app.Use(async (context, next) =>
{
var url = context.Request.Path.Value;
// Redirect to an external URL
if (url.Contains("/api/auth"))
{
context.Response.Redirect("http://localhost:port"+url);
return; // short circuit
}
await next();
});
How can I solve it?
You can try to redirect to a
HttpGet
action in middleware,and in the action redirect to aHttpPost
action. Here is a demo:HomeController:
result: