I have a Razor website built with ASP.NET Core 8 and the Identity framework. I have scaffolded the Identity pages, and they seem to work fine. But I don’t like their paths – “/Identity/Account/Manage/something”. I am considering moving the “AreasIdentityPagesAccounts” files into the Pagesprofile directory and updating the internal links so that a user would see just a “/profile/manage/something” path. I have not found information about anyone doing this.
My concern is that, possibly, some paths come from the outside of the pages (like from the framework itself) or are derived in some obscure way (e.g., from the namespace name).
So, the question is – does anybody have experience with moving those scaffolded pages around? What else should I update besides the links inside the pages?