c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
asp.net MVC

HTTP Error 404.3 - Not Found in Asp.net MVC Application | SOLVED

| | MVC

I got this following error while playing a video file (.m3u8 format ) in asp.net mvc application.

404.3 not found

SOLUTION:

1.Open the web.config file in the  ASP.NET MVC application.

2.Add the following configuration inside the <system.webServer> element:

MIME Type is used for HTTP Live Streaming HLS playlist file which is used for streaming video content.By adding the configuration in web.config file for .m3u8 extenstion which will identify the HLS

playlist file and handle it appropriately.

Web.config:

<system.webServer>

<staticContent>
<mimeMap fileExtension=".m3u8" mimeType="application/x-mpegURL"/>
</staticContent>
</system.webServer>

VIDEO GUIDE: