我在我的 ASP.Net WebAPI 应用程序中使用 RedirectToAction,我尝试了以下一个。
return RedirectToAction("AuthenticateUser", "AuthenticationServiceWebApi", new RouteValueDictionary
{
{"userName", model.UserName},
{"password", model.Password}
});
这会生成如下重定向。
127.0.0.1:81/authenticationservicewebapi/authenticateuser/admin/admin@123
但是,由于我使用的是 WebAPI,所以我需要是如下所示的 URL。
127.0.0.1:81/api/authenticationservicewebapi/authenticateuser/admin/admin@123
我该怎么做呢?