У меня есть следующая структура просмотра:
Home
Index
Security
Accounts
LogOn
Следующий код в действии LogOn вызывает перенаправление на http://localhost/Security/Home/Index вместо http://localhost/Home/Index
return RedirectToAction("Index", "Home");
Вот мой регистрационный код для каждого маршрута:
Главная
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new {controller = "Home", action = "Index", id = UrlParameter.Optional} // Parameter defaults
);
Безопасность
public override void RegisterArea(System.Web.Mvc.AreaRegistrationContext context) {
context.MapRoute(
"Security_default",
"Security/{controller}/{action}",
new { action = "LogOn" }
);
}
Любая помощь с благодарностью.