A HTML5 video I am implementing is not working in ie9. After some debugging, I found that the mime-type is translating the mp4 as application/octet-stream
In my .htaccess file however, I have
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm
What have I missed in defining mime-types?
.htaccessfiles? Are your.htaccessfiles allowed to override theAddTypeMIME types? – sarnold Feb 1 '12 at 4:17AllowOverride FileInfoor a more generalAllowOverrideconfiguration... – sarnold Feb 1 '12 at 4:43.htaccessthat granted them access to overriding everything, there wouldn't be much point to it, right? :) – sarnold Feb 1 '12 at 4:54