On my project I have a folder where I have to place different sites, each site is developed with angular and contains .html files.
That's the path of one site, and that it Works:
- ~/Sites/One/Index.Html
- www.Mystye.com/Sites/One/Index.Html
But I want this other Path:
- www.Mystye.com/SiteOne/ and return the content from :> ~/Sites/One/Index.Html
I don't know how to do that because I need too keep referenced all content inside the folder "~/Sites/One" of the project.
Creating a MapPageRoute, will allow me to do that, but the problem is that the web content will try to load files from "/SiteOne/js/xxxx.js" and not from "/Sites/One/js/xxxx.js". Maybe ther's a way to redirect all requests that start with "/SiteOne/" ...