How do I gzip my web files

前端 未结 9 1622
抹茶落季
抹茶落季 2021-02-03 11:45

As prescribed by Yahoo!, gzip\'ng files would make your websites load faster. The problem? I don\'t know how :p

9条回答
  •  一个人的身影
    2021-02-03 12:31

    Edit your httpd.conf file.

    Add this line to load the module:

    LoadModule deflate_module modules/mod_deflate.so
    

    Add these lines to actually compress the output:

    AddOutputFilterByType DEFLATE text/css text/html application/x-javascript application/javascript
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    

提交回复
热议问题