Apache使用mod_deflate加速瀏覽

回覆文章
布魯斯
Site Admin
文章: 211
註冊時間: 週四 2月 16, 2006 3:34 pm

Apache使用mod_deflate加速瀏覽

文章 布魯斯 »

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
回覆文章