I want to use an Azure blob file storage to host a static website.
This works fine, if the html-page is located in the root folder of the $web-storage.
But if I put the webpage into a subfolder, the relative links (e.g. to css files) don't work anymore - since they are interpreted as root-based links
<link href="css/bootstrap.css" rel="stylesheet">
index.html is located in "subfolder1"
But instead of
https://blablabla.web.core.windows.net/subfolder1/css
it is resolved to
https://blablabla.web.core.windows.net/css
Is this an error of Azure or a misunderstanding/error in my html?






