I have been looking through trying to find some way to redirect to an Index view from another controller.
Index
public ActionResult Index() {
Use the overloads that take the controller name too...
return RedirectToAction("Index", "MyController");
and
@Html.ActionLink("Link Name","Index", "MyController", null, null)