I want to redirect the Index action of the Home controller to another controller\'s action and nothing else. My code is thus:
public void Index() {
You have to write this code instead of return View(); :
return RedirectToAction("ActionName", "ControllerName");