Razor Pages Default Page in aspnetcore 2

前端 未结 5 538
感动是毒
感动是毒 2021-01-11 19:51

By default a Razor Page app goes to Home/Index

Is there a way to change this to Home/App?

This is quite easy in MVC, but Razor pages using a different routing

5条回答
  •  梦毁少年i
    2021-01-11 20:24

    In my case the ambiguity was caused by Pages/Index.cshtml left in project. This worked:

    1. options.Conventions.AddPageRoute("/App", "");
    2. remove or rename Pages/Index.cshtml

提交回复
热议问题