diff --git a/SportsStore/SportsStore.WebUI/App_Start/RouteConfig.cs b/SportsStore/SportsStore.WebUI/App_Start/RouteConfig.cs index 2f301d8..1ec3c24 100644 --- a/SportsStore/SportsStore.WebUI/App_Start/RouteConfig.cs +++ b/SportsStore/SportsStore.WebUI/App_Start/RouteConfig.cs @@ -16,7 +16,7 @@ namespace SportsStore.WebUI routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", - defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } + defaults: new { controller = "Product", action = "List", id = UrlParameter.Optional } ); } }