I have an area called "UserProfile". And from its Index View I want to call an Action from the root controller (Non-Area). I used Html.ActionLink("Index", "Home")
When I ran the application the generated url is "/UserProfile/Home/Index" instead of "/Home/Index".
Root
View Index.aspx
Controller: App/Controller/HomeController
Path: App/Views/Home
Area
View: Index.aspx
Path: App/Areas/UserProfile/Views/User
ActionLink: Html.ActionLink("Index", "Home")