ฉันจะมั่นใจได้อย่างไรว่าเนื้อหาของฉันถูกส่งผ่าน gzip ใน Apache?


10

มีการตั้งค่าบางอย่างที่ฉันสามารถค้นหาในการกำหนดค่า Apache เพื่อให้แน่ใจว่าหน้าทั้งหมด CSS และ JavaScript ถูกส่งผ่าน gzip หรือไม่

พวกเขาอยู่ในสถานที่ที่แตกต่างกันสำหรับระบบปฏิบัติการที่แตกต่างกันหรือไม่


2
นี่ไม่ใช่หัวข้อนอก

คำตอบ:


3

ฉันใส่สิ่งต่อไปนี้ใน httpd.conf ของฉันและดูเหมือนว่าจะทำงาน:

  # 20100709 added etag code
  FileETag MTime Size

  # 20100709 added compression START

  # 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

  # 20100709 added compression END

เว็บไซต์นี้มีผู้ทดสอบที่ยอดเยี่ยมในการดูว่าหน้าของคุณเป็น GZIP หรือไม่: http://www.whatsmyip.org/http_compression/


ฉันคิดว่า Deflate มีปัญหาการสนับสนุนกับ Internet Explorer
Evan Plaice


0

RedBotซึ่งเป็นผู้สืบทอดของ Cacheability Engine ทำหน้าที่ได้ยอดเยี่ยมในการทดสอบหน้าและเนื้อหาสำหรับการวัดประสิทธิภาพและความสามารถในการแคชต่าง ๆ ในรูปแบบกริดที่เรียบง่ายและอ่านง่าย

ตัวอย่าง: http://redbot.org/?descend=True&uri=http://www.microsoft.com/en/us/default.aspx

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