Redirect from one Area's action to a action in the "root"-area? Redirect from one Area's action to a action in the "root"-area? asp.net asp.net

Redirect from one Area's action to a action in the "root"-area?


Try this:

return RedirectToAction("index", "home", new { area = "" });


If using the default routing this should work too, not sure what happens to the ViewData.

return Redirect("~/");