Greetings IIS has a default web site that looks at the folder " c: \ wwwroot \ inetpub ". A virtual directory (path d: / MyFolder / ) has been added for it, which contains index.html with the following code:
<html> <body> Hello! <br> <video width="320" height="240" controls> <source src="vidosik.mp4" type="video/mp4"> Your browser does not support the video tag. </video> </body> </html> If you open the html file in the browser. then the file is playing. But if you open via url localhost / mysite , it writes to network :
404 - File or directory not found
The video file is in the same folder as index.html . I tried to put the file in the folder " c: \ wwwroot \ inetpub ", did not help. Why does not find the file?
