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
[Route("MyApplication")] public class MyController : Controller { [HttpGet] public async Task Login(string returnUrl = null) { // Blah! } }