1 頁 (共 1 頁)

Apache使用mod_deflate加速瀏覽

發表於 : 週二 4月 14, 2009 12:57 am
布魯斯
Apache的mod_deflate模組

1.確認是否有Apache的mod_deflate模組

代碼: 選擇全部

# grep mod_deflate httpd.conf
LoadModule deflate_module modules/mod_deflate.so
2.之後加入設定於httpd.conf

代碼: 選擇全部

<ifmodule mod_deflate.c>
DeflateCompressionLevel 9
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE js css
</ifmodule>
3.重新啟動Apache