I have succesfully set up a static website on Azure Blob storage using the $web
container as advised within the Microsoft documentation. In addition, I have def
Kudos to Andreas Wendl at https://github.com/MicrosoftDocs/azure-docs/issues/43257#issuecomment-580668444
Here's a simpler / possibly more correct solution:
/static/*
be/index.html
So, index.html is served in response to deep links like /users/
and let's say /users/alexa.siri
.
I think I found a solution
Condition: URL file extension
a. Operator: Less than
b. Extension: 1
c. Case transform: No transform
[This basically means that the URL requested has no file (extension) but is a route of the app which will be taken care of by the app routing]
Action: URL rewrite
a. Source pattern: /
b. Destination: /index.html
c. Preserve unmatched path: No
.