1

我看到了很多相互矛盾的信息,不知道如何继续。我想将 OGG MIME 类型添加到 htaccess 文件中,以支持来自我的服务器的 Firefox HTML5 音频/视频。我已经看到该文件实际上被标记为“.htaccess”,并且有很多方法可以编写正确的 MIME 类型。什么是最好的?还有,怎么安装?这是一个 IX Web 托管帐户。

这是我的 HTML5 音频标记的示例。

谢谢!

    <audio id="paparazzi">
        <source src="http://www.minimalpluscreative.com/newclients/dev/PAPARAZZI%20(SNL%20MIX).ogg" type="audio/ogg" />
        <source src="http://www.minimalpluscreative.com/newclients/dev/PAPARAZZI%20(SNL%20MIX).mp3" type="audio/mpeg" />
        Your browser does not support HTML5 audio.
   </audio>
4

1 回答 1

3

If you're not sure, download the .htaccess from HTML5 Boilerplate and use that. Here's the relevant section (line 77 on):

# audio
AddType audio/ogg oga ogg

# video
AddType video/ogg ogv
于 2011-04-19T13:55:50.547 回答