Przekieruj na inną stronę kontrolera w ASP.NET Core

public RedirectToActionResult Index()
{
    return RedirectToAction(actionName: "Index", controllerName: "Author");
}
Manohar Shrestha