IIS - ASP.NET MVC redirection

╄→尐↘猪︶ㄣ 提交于 2019-12-07 07:38:25

Yeah, that last bit is a real caveat. If this were on IIS7, it'd be 100% easier!

You could download another app to do the redirecting work, but then it wouldn't be hard to edit the MVC app. Assuming that /issue/ and /quality/ are different routes, why not just do something like this:

public class MyController
{
  public RedirectResult Issue()
  {
    //return as a redirect
    return Redirect("http://applicationb/issue");
  }

  public ActionResult Quality()
  {
    //This is here to show that, instead of redirecting, it returns a view.
    return View();
  }
}

You could use URLRewriting.NET to do the redirection based on a regex pattern.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!