当MVC4无法跳转时

//RedirectToAction("Index","首页"); 
//return View("首页/Index");
//RedirectToRoute(new
//{
// controller = "首页",
// action = "Index"
//});
//return Redirect("首页/Index");
//return View("首页/Index");

  以上,全都不行。

Response.Redirect("~/首页/Index");

  就只有这个才行。

原文地址:https://www.cnblogs.com/qiywtc/p/4384651.html