วิธีเปิดใช้งานการบีบอัด Gzip


12

ฉันจำเป็นต้องตั้งค่าการบีบอัด Gzip สำหรับโครงการคุณภาพเยี่ยม ฉันลองใช้รหัสหลาย.htaccessไฟล์ในโครงการของฉัน แต่ไม่สามารถเปิดใช้งาน Gzip ได้

โปรดให้ทางออกที่ถูกต้องแก่ฉัน


คุณกำลังพูดเกี่ยวกับการบีบอัด gzip เพื่อปรับปรุงประสิทธิภาพของไซต์หรือไม่
Mukesh

ใช่บอกวิธีบีบอัด
Kishan Kothari

คุณแก้ปัญหานี้หรือยัง?
Nitesh

คำตอบ:


9

ตรวจสอบให้แน่ใจว่าmod_deflateเปิดอยู่ใน Apache คุณสามารถตรวจสอบโดยการสร้างไฟล์และเรียก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กว่าแสดง G.zip ไม่เปิดใช้งาน
Kishan Kothari

คุณแน่ใจหรือว่า mod_deflate เปิดอยู่?
Sander Mangel

ใช่โหนดนั้นเปิดอยู่
Kishan Kothari
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.