I have a question about the routing of IIS.
If I have a javascript application that has a single entry point app.html. Is it possible to configure the IIS server such that both the urls
addr:port/entry1 addr:port/entry2
to provide the same app.html and let the javascript code from application decide what component to load next, depending on the path of the URL ?
My IIS server is configured such that when I do a GET url1, ir tries to send entry1.html , respectively entry2.html when I do GET url2.