woff 發表於 2018-12-24 11:22:34

CPanel/WHM 如何開啟Apache 全域mod_deflate 壓縮

進入cPanel/WHM後
找到
Services Configuration >> Apache Configuration >> Include Editor >> Post VirtualHost Include, and select All Versions

Now, paste the following into this file, and hit Update:
貼上下列代碼到裡面並更新
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 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 !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

SetEnvIfNoCaseRequest_URI"\.(?:gif|jpe?g|png)$" no-gzip
重啟APACHE服務,就可開啟圖片壓縮


That’s it, now, go back to the site I gave you at the start, load up your website, and verify that compression is now functioning.
頁: [1]
查看完整版本: CPanel/WHM 如何開啟Apache 全域mod_deflate 壓縮