Create a new controller foreg
ControllerName: "Home", ActionresultName :"Index"
open AreaRegistraion.cs and add the controller name and action name to be rerouted to
context.MapRoute(
"nameofarea_default",
"nameofarea/{controller}/{action}/{id}", // url shown will be like this in browser
new {controller="Home", action = "Index", id = UrlParameter.Optional }
);