Question
How do I get a sub page in blazer to render the same way the home page does the first time?
Background
I have created a demo application for myself using the Blazer template on GitHub. https://github.com/staticwebdev/blazor-starter
the project is largely unchanged, with the exception of some subpages I have started
/LuckyLuke
/Chess
/Programmer
these pages are accessed has sub pages off the main page e.g.
lukehammer.com/luckyluke
lukehammer.com/chess
lukehammer.com/programmer
however if somebody navigates directly to them without visiting the home page first the page fails to render or give any meaningful redirection.
so https://lukehammer.com works but https://lukehammer.com/chess will not work.
but if you go to https://lukehammer.com then to https://lukehammer.com/chess that will work.
Question restated with context
Is there a way to cause page https://lukehammer.com/chess to work with out having to go to https://lukehammer.com first?
1