I\'m developing an ASP.NET Core application. My application hosted with NGinx on url http://somedomain.com/MyApplication.
http://somedomain.com/MyApplication
I need all requests routed to
In App_Start/RouteConfig.cs:
routes.MapRoute( name: "default", url: "MyApplication/{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } );