zoukankan      html  css  js  c++  java
  • Linux Apache开启gzip压缩提高网页下载速度

    为了提高网页浏览速度,我们可以在服务器的apache开启gzip压缩功能,这样压缩使网页更小,自然下载需要的时间就更少了,用户体验更佳。下面来介绍如何开启这个功能。
    1、首先得确认apache是否已经加载了mod_deflate模块。

    1. httpd -M

    如何此模块不在列表中,可以参考这篇文章:如何安装加载mod_deflate模块
    2、编译配置文件httpd.conf,增加支持gzip的文件类型,如下:

    1. <Location />
    2. AddOutputFilterByType DEFLATE text/plain
    3. AddOutputFilterByType DEFLATE text/css
    4. AddOutputFilterByType DEFLATE application/xml
    5. AddOutputFilterByType DEFLATE application/rss+xml
    6. AddOutputFilterByType DEFLATE application/atom_xml
    7. AddOutputFilterByType DEFLATE application/x-javascript
    8. AddOutputFilterByType DEFLATE application/x-httpd-php
    9. AddOutputFilterByType DEFLATE text/html
    10. </Location>

    3、重启httpd。

    1. service httpd restart

    4,检验是否已经开启成功。
    可以到站长工具http://tool.chinaz.com/Gzips/输入网站的任一网址来测试。

     

    转载请标明文章来源:《http://www.centos.bz/2011/09/linux-apache-enable-gzip-speed-up-webpage/》

  • 相关阅读:
    第一章 初识shiro
    LDAP概念
    css定位
    css随笔1
    自己动手实现信息检索系统
    IntelliJ IDEA和pycharm注册码
    俄罗斯农夫算法
    [NOIP2013]转圈游戏
    [codevs1287]矩阵乘法
    [洛谷1314]无序字母对
  • 原文地址:https://www.cnblogs.com/yiwd/p/3126793.html
Copyright © 2011-2022 走看看