จะเปิดใช้งานการบีบอัด Gzip หรือ Deflate ผ่าน. htaccess ได้อย่างไร


22

วิธีการเปิดใช้งานการบีบอัด Gzip หรือ Deflate ผ่าน. htaccess และวันไหนดีที่สุด ตัวอย่างรหัสที่จำเป็น

คำตอบ:


15

HTML5 Boilerplate ( http://html5boilerplate.com ) นำเสนอสิ่งที่น่าจะเป็นวิธีที่ดีที่สุดและมีประสิทธิภาพที่สุดในการตั้งค่าพร้อมกับคนอื่น ๆ มากมายเช่นแคชประเภท mime ฯลฯ แนะนำเป็นอย่างยิ่ง

<IfModule mod_deflate.c>

# Force compression for mangled headers.
# http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
<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 MIME-types
# (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
#  and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
#  as `AddOutputFilterByType` is still in the core directives).

<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE application/atom+xml \
application/javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
application/x-font-ttf \
application/x-web-app-manifest+json \
application/xhtml+xml \
application/xml \
font/opentype \
image/svg+xml \
image/x-icon \
text/css \
text/html \
text/plain \
text/x-component \
text/xml
</IfModule>

</IfModule>

แก้ไข: ตั้งแต่คำถามและคำตอบนี้ให้ได้รับ upvoted หลังจากที่สองของปีที่ผ่านมาฉันวาง H5BP configs เซิร์ฟเวอร์เชื่อมโยงที่สมบูรณ์มากขึ้นสำหรับการเพิ่มประสิทธิภาพ

แก้ไข: ลิงก์ถาวรไปที่https://github.com/h5bp/server-configs-apache


12

ดูเอกสารApache mod_deflateโดยเฉพาะตัวอย่าง " บีบอัดทุกอย่างยกเว้นรูปภาพ " มันทำงานได้ดีสำหรับฉันและจะใส่ลงใน.htaccessไฟล์ดังต่อไปนี้:

<IfModule mod_deflate.c>
        # Insert filter
        SetOutputFilter DEFLATE

        # Netscape 4.x has some problems...
        BrowserMatch ^Mozilla/4 gzip-only-text/html

        # Netscape 4.06-4.08 have some more problems
        BrowserMatch ^Mozilla/4\.0[678] no-gzip

        # MSIE masquerades as Netscape, but it is fine
        # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

        # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
        # the above regex won't work. You can use the following
        # workaround to get the desired effect:
        BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

        # Don't compress images
        SetEnvIfNoCase Request_URI \
        \.(?:gif|jpe?g|png)$ no-gzip dont-vary

        # Make sure proxies don't deliver the wrong content
        Header append Vary User-Agent env=!dont-vary
</IfModule>

และแน่นอนให้แน่ใจว่าคุณมีไฟล์ต่อไปนี้ในhttpd.confการเปิดใช้งานmod_deflate:

LoadModule deflate_module libexec/apache2/mod_deflate.so

9

ฉันเปิดใช้งานการยุบสินทรัพย์คงที่ในเว็บไซต์ของฉัน (ตามประเภท MIME) โดยใช้สิ่งต่อไปนี้ที่เพิ่มลงใน.htaccessไฟล์ที่รากของpublic_htmlไดเรกทอรีของฉัน:

<ifModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/xml text/css text/plain
  AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript application/json
</ifModule>

คุณยังสามารถเปิดใช้งานได้ด้วยนามสกุลไฟล์แม้ว่าฉันจะไม่มีไวยากรณ์สำหรับการใช้งานนั้น

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