If you want to go to a specific action, you can simply specify the name of the controller and the action you want to perform:
@Html.RouteLink(MyResources.HomeLinkLabel, new { controller = "Home", action = "Index" })
Now, if you want to go to the root, you can just put something like
<a href="@Url.Content("~/")">...</a>
source share