网站开启Gzip压缩-apache

  1. 找到并打开apache/conf目录中的httpd.conf文件

  2. httpd.conf中打开deflate_Module和headers_Module模块,具体做法为将 如下两句前面的#去掉:

    LoadModule deflate_module modules/mod_deflate.so

    LoadModule headers_module modules/mod_headers.so

    3.配置文件末尾加上

    <ifmodule mod_deflate.c>
    #启用对特定MIME类型内容的压缩
    SetOutputFilter DEFLATE SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png|exe|t?gz|zip|bz2|sit|rar|pdf|mov|avi|mp3|mp4|rm)$ no-gzip dont-vary #设置不对压缩的文件 AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml application/x-httpd-php application/x-javascript #设置对压缩的文件 </ifmodule>

    重启即可

网站开启Gzip压缩-apache,布布扣,bubuko.com

网站开启Gzip压缩-apache

上一篇:【转】教你如何查看一个网站是由哪种语言写的


下一篇:js当中mouseover和mouseout多次触发(非冒泡)