ウェブサイトを高速化するために、ウェブサイトに 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 という firebug 拡張機能を使用して gzip 圧縮を監視していますが、機能していません。http://gtmetrix.com/も使用していますが、結果は同じです。gzip 圧縮を有効にするためにさらに何をしなければならないか、誰か説明してもらえますか? 本当にありがとう!