Replace existing map route in ASP.NET Core
How can I replace the existing action routes
/login
/user-registration
…
with the following localized routes?
/en/login
/it/login
/en/user-registration
/it/registrazione-utente
…
en, it refer to the culture.
I would like replace these routes only inside Startup.cs written in ASP.NET Core 8.
I would like replace these routes only inside Startup.cs written in ASP.NET Core 8.
How can I replace the existing action routes /login/user-registration… with the following localized routes?/en/login/it/login /en/user-registration/it/registrazione-utente … en, it refer to the culture.I would like replace these routes only inside Startup.cs written in ASP.NET Core 8. Read More