MVC重定向的4个方法

     //Response.Redirect("/home/index");
            //return Redirect("/home/index");
            //return RedirectToAction("index");//在同一个目录下
            //return RedirectToAction("index", "home");  //如果不在同一个目录下

原文地址:https://www.cnblogs.com/CommonDream/p/2423490.html