gpt4 book ai didi

.htaccess - htaccess的缓存和gzip压缩

转载 作者:行者123 更新时间:2023-12-03 09:01:49 26 4
gpt4 key购买 nike

有人可以为我提供经过优化的.htaccess配置,该配置可以处理典型网站的压缩,浏览器缓存,代理缓存等吗?

除了访问者外,我还试图使Google PageSpeed变得快乐。
我想通过.htaccess使用缓存和gzip压缩,请提供其代码帮助我!

我想长时间缓存icon,pdf,flv,jpg,png,gif,js,css,swf文件

我想将xml,txt文件缓存2天

我想将html文件缓存2天

我想压缩html,txt,css,js,php文件,因为这些文件的文件很大。

有什么方法可以使用.htaccess压缩图像吗?

最佳答案

# 480 weeks
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=290304000, public"
</FilesMatch>

# 2 DAYS
<FilesMatch "\.(xml|txt)$">
Header set Cache-Control "max-age=172800, public, must-revalidate"
</FilesMatch>

# 2 HOURS
<FilesMatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, must-revalidate"
</FilesMatch>

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>

关于.htaccess - htaccess的缓存和gzip压缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6724549/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com