在ASP.NET Core如何进行重定向操作?
直接Response.Redirect就能跳啊
app.Map("/yu", con => { con.Run(async context => { context.Response.Redirect("http://baidu.com"); await Task.FromResult(0); }); });
markmarkmark