我知道在stackoverflow上已经多次询问过这个问题,但在这些问题中我找不到任何对我有用的东西 .

我有一个由BlueHost托管的网站,我正在尝试启用gzip压缩 .

这是我的.htaccess文件的(相关部分):

#GZIP
<ifmodule mod_deflate.c>

AddOutputFilterByType DEFLATE application/javascript application/x-javascript text/plain text/html text/css text/x-component text/xml application/json application/xml alpplication/xhtml+xml

</ifmodule>

这段代码是由BlueHost提供给我的 .

如果我运行Google 's PageSpeed Insights, it recognizes the compression. However, when I run GTMetrix (which does PageSpeed and YSlow), neither of them recognize the gzip' d内容 . 此外,我检查了http://www.gidnetwork.com/tools/gzip-test.php,我正在提供gzip内容 .

我做错了什么,或者GTMetrix有错误吗?