Gzip 압축을 활성화하는 방법?


12

Magento 프로젝트에 Gzip 압축을 설정해야합니다. .htaccess내 프로젝트 의 파일에서 많은 코드를 시도했지만 Gzip을 활성화 할 수 없었습니다.

올바른 해결책을 알려주세요.


사이트 성능을 향상시키기 위해 gzip 압축에 대해 이야기하고 있습니까?
Mukesh

예, 압축 방법을 알려주세요.
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

당신을 돕기 위해 그 이상이 필요합니다. 작동하지 않는 것에 대한 오류나 힌트가 있습니까?
Sander Mangel

웹 사이트는 올바른 작업이지만이 링크에서 checkgzipcompression.com을 확인하면 show G.zip을 사용할 수 없습니다.
Kishan Kothari

mod_deflate가 켜져 있습니까?
Sander Mangel

예, 확인 노드가 켜져
Kishan Kothari의
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.