7
我在Firefox中播放mp4時遇到了一些問題(這並不令人意外)。大多數時候,建議在我的.htaccess文件中添加一些MIME類型。喜歡的東西:帶或不帶前導點的.htaccess中的MIME類型
AddType video/mp4 mp4 m4v
AddType audio/mp4 m4a
AddType video/ogg ogv
AddType audio/ogg ogg oga
AddType video/webm webm
有人建議相同,但帶有前導點:
AddType video/mp4 .mp4 .m4v
AddType audio/mp4 .m4a
AddType video/ogg .ogv
AddType audio/ogg .ogg .oga
AddType video/webm .webm
什麼是這兩個片段之間的區別?