I wanted to set my starting page to /Members/Index.
When I was using MVC, I configured it as following:
app.UseMvc(routes => {
I am using this way
services.AddMvc() .AddRazorPagesOptions(options => { options.AllowAreas = true; options.Conventions.AddAreaPageRoute("Home", "/Index", ""); });
My folder structure is:
- Area |_ Home |_ Pages |_ Index.cshtml |_ //other areas