I found the problem.
I had added mime type mapping for static files for caching reasons and neglected to add the following for html files:
<mimeMap fileExtension=".html" mimeType="text/html"/>
Adding it solved the problem.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have more than one static html file at the root of my web application. I can ftp to the application on azure and see them at the root directory /site/wwwroot/ but none of them will be display when navigating to them in a browser. For example the azure default hosting start file.
https://<myazureapp>.azurewebsites.net/hostingstart.html
Returns the error, which is the same error returned for all static html files at the root.
"The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
Thank you.
I found the problem.
I had added mime type mapping for static files for caching reasons and neglected to add the following for html files:
<mimeMap fileExtension=".html" mimeType="text/html"/>
Adding it solved the problem.