0
我有ASP.NET MVC應用程序。 我想我的應用程序重定向從在MVC中使用路由重定向
example.com/Register
到
example.com/Account/Register
我該怎麼辦呢有路線?對我來說,僅僅爲這一項任務製造控制器毫無意義
public class RegisterController : Controller
{
public ActionResult Index()
{
return RedirectToAction("Register", "Account");
}
}
[Phil Haack的RouteMagic](http://haacked.com/archive/2011/02/02/redirecting-routes-to-maintain-persistent-urls.aspx/)能解決你的問題嗎? –