当前位置:Gxlcms > PHP教程 > apache怎么配置页面引入*gz文件

apache怎么配置页面引入*gz文件

时间:2021-07-01 10:21:17 帮助过:5人阅读

apache 如何配置 页面引入*.gz文件
apache 如何配置 页面引入*.gz文件

比如压缩一个jquery.gz文件

如何配置引入这个文件

请教!


------解决方案--------------------
使文件用gzip先压缩再传输吗?

开启mod_deflate
sudo a2enmod deflate
sudo /etc/init.d/apache2 restart

在httpd.conf中添加


#单独设置需要压缩的类型
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css
AddOutputFilterByType DEFLATE application/x-javascript


http://blog.csdn.net/fdipzone/article/details/8916755

人气教程排行