apache mod_deflate, mod_expires config

本文详细介绍了如何通过Apache的配置文件来启用内容压缩及设置缓存策略,以提高网站性能。具体包括使用DEFLATE压缩不同类型的内容,针对特定浏览器进行优化,并为不同类型的静态资源设定合适的缓存过期时间。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

<location />

 # 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 

 SetEnvIfNoCase Request_URI /

 /.(?:gif|jpe?g|png)$ no-gzip dont-vary

 SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary

 SetEnvIfNoCase Request_URI .(?:pdf|mov|avi|mp3|mp4|rm)$ no-gzip dont-vary

 

 #compress

 AddOutputFilterByType DEFLATE text/*

 AddOutputFilterByType DEFLATE application/ms* application/vnd* application/postscript application/javascript application/x-javascript

 AddOutputFilterByType DEFLATE application/x-httpd-php application/x-httpd-fastphp

 

 # Make sure proxies don't deliver the wrong content

 Header append Vary User-Agent env=!dont-vary

</Location> 

 

 

#######################################################################################################

 

<IfModule expires_module>

ExpiresActive On 

    ExpiresDefault A604800 

    ExpiresByType text/css M259200 

    ExpiresByType application/x-javascript M300 

    ExpiresByType image/gif "access plus 2 month" 

    ExpiresByType image/jpeg "access plus 2 month" 

    ExpiresByType image/png "access plus 2 month" 

    ExpiresByType image/x-icon "access plus 2 month" 

    ExpiresByType application/x-shockwave-flash A2592000 

</IfModule>

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值