Gzip圧縮を有効にする方法は?


12

MagentoプロジェクトのGzip圧縮をセットアップする必要があります。.htaccessプロジェクトのファイルで多くのコードを試しましたが、Gzipを有効にできませんでした。

適切なソリューションを教えてください。


サイトのパフォーマンスを改善するためのgzip圧縮について話しているのですか?
ムケシュ

はい、圧縮する方法を教えてください?
Kishan Kothari

まだこの問題を解決しましたか??
-Nitesh

回答:


9

mod_deflateApacheでオンになっていることを確認してください。info.phpファイルを作成してを呼び出すことで確認できますphpinfo();。サーバーのPHP / Apache仕様をブラウザーに出力します。完了したら削除することを忘れないでください!

次に、以下をhtaccessファイルに追加します

<IfModule mod_php5.c>
    ## enable resulting html compression
   php_flag zlib.output_compression on
</IfModule>

<IfModule mod_deflate.c>

    ## Force compression for mangled `Accept-Encoding` request headers
    <IfModule mod_setenvif.c>
        <IfModule mod_headers.c>
            SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
            RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
        </IfModule>
    </IfModule>

    ## Compress all output labeled with one of the following media types.
    <IfModule mod_filter.c>
        AddOutputFilterByType DEFLATE "application/atom+xml" \
                                      "application/javascript" \
                                      "application/json" \
                                      "application/ld+json" \
                                      "application/manifest+json" \
                                      "application/rdf+xml" \
                                      "application/rss+xml" \
                                      "application/schema+json" \
                                      "application/vnd.geo+json" \
                                      "application/vnd.ms-fontobject" \
                                      "application/x-font-ttf" \
                                      "application/x-javascript" \
                                      "application/x-web-app-manifest+json" \
                                      "application/xhtml+xml" \
                                      "application/xml" \
                                      "font/eot" \
                                      "font/opentype" \
                                      "image/bmp" \
                                      "image/svg+xml" \
                                      "image/vnd.microsoft.icon" \
                                      "image/x-icon" \
                                      "text/cache-manifest" \
                                      "text/css" \
                                      "text/html" \
                                      "text/javascript" \
                                      "text/plain" \
                                      "text/vcard" \
                                      "text/vnd.rim.location.xloc" \
                                      "text/vtt" \
                                      "text/x-component" \
                                      "text/x-cross-domain-policy" \
                                      "text/xml"

    </IfModule>

    ## Map the following filename extensions to the specified
    ## encoding type in order to make Apache serve the file types
    ## with the appropriate `Content-Encoding` response header
    ## (do note that this will NOT make Apache compress them!).
    <IfModule mod_mime.c>
        AddEncoding gzip              svgz
    </IfModule>

</IfModule>

ハローサンダーコードは動作しません。このコードを追加しましたが、g.zipを有効にできません。
Kishan Kothari

私はあなたを助けるためにそれよりもう少し必要があります。何が機能していないかについてのエラーやヒントはありますか?
サンダーマンジェル

ウェブサイトは適切に動作しますが、このリンクからcheckgzipcompression.comを確認すると、G.zipが表示されません。
Kishan Kothari

mod_deflateがオンになっていますか?
サンダーマンジェル

はい、ノードがオンになっていることを確認
Kishan Kothari
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.