I wanted to set my starting page to /Members/Index.
When I was using MVC, I configured it as following:
app.UseMvc(routes => {
Try following code at AppStart->RouteConfig.cs :
AppStart->RouteConfig.cs
routes.MapRoute( name: "Default", url: "{controller}/{action}", defaults: new { controller = "Members", action = "Index"} );