IIS 7 ve IIS 7.5’te web.config ile mime type tanımlama (The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.) HATASI VE ÇÖZÜMÜ
Farklı uzantılı dosyaları .net sitemizde calıstırmak için değişik ayarlara ihtiyacımız olacaktır. Asp ve php sitelerde ise bildiğim kadarıyla direk sunucuya erişip iis ayarlarını yapmamız gerekecek.
IIS 7 ve IIS 7.5’te web.config ile mime type tanımlamak için ayarlarımız şu şekilde olacaktır.<configuration>
<system.webServer>
<staticContent>
<mimeMapfileExtension=".mp4"mimeType="video/mp4"/></staticContent>
</system.webServer>
</configuration>
ben .mp4 uzantılı dosyayı expolerar yazdığımda aldığım hata
HTTP Error 404.3 – Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map. Şu şekilde idi. Dosya uzantıları ve bunlara karşılık gelen MIME type’ları bulup sitenize ekleyebilirsiniz. <mimeMapfileExtension=".mp4"mimeType="video/mp4"/> tagını WebServer 'a ekleyince sıkıntımız kalkıyor. İstediğimiz uzantıyı webconfig de tanımlayıp işimize geri dönüyoruz.