I'm having a problem with a deployed webapp service in AZURE, the videos contained in the web page are not working.
The message is the next one:
"The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
The HTML code is the next one:
<a href="images/Test.mp4" class="popup-vimeo btn-video"><i class="icon-play2"></i></a>
Can anyone help me please?
Thanks!
As @Offbeatmammal mentioned, we need to configure the MIME types in web config file before we use the specific file type in our web application. Since your video type is mp4, you need to add following configuration into < system.webServer > tag.
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4" />
</staticContent>