I have been looking through trying to find some way to redirect to an Index view from another controller.
Index
public ActionResult Index() {
You can use the overloads method RedirectToAction(string actionName, string controllerName);
RedirectToAction(string actionName, string controllerName);
Example:
RedirectToAction(nameof(HomeController.Index), "Home");