2

我刚刚添加或尝试添加 gzip 压缩到我的网站以使其更快。这是.htaccess我从这个答案中得到的代码。

<IfModule mod_deflate.c>
    #The following line is enough for .js and .css
    AddOutputFilter DEFLATE js css
    #The following line also enables compression by file content type, for the following list of Content-Type:s
    AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml
    #The following lines are to avoid bugs with some browsers
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html 
</IfModule>

所以现在我正在使用一个名为 PageSpeed 的萤火虫扩展来监控 gzip 压缩,但它不起作用。我也使用http://gtmetrix.com/,结果是一样的。谁能向我解释我还需要做什么才能启用 gzip 压缩?非常感谢!

4

0 回答 0