2013-08-28 73 views
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 

什麼是這兩個片段之間的區別?

回答

8

擴展參數不區分大小寫,可以使用或不使用前導點來指定。

所以總之它沒有區別,它們都會達到同樣的結果。 Read more about AddType here.