使用mod_gzip加速你的html页面
页面
确定你的apache可以使用DSO方式安装模块。
首先解压缩并把补丁复制到临时目录中
# tar zxvf mod*z -C /tmp
# cp *tch /tmp
先打补丁
# cd /tmp/mod*a
# patch <..>然后就可以编译了
# make APXS=/path/to/apxs
安装:
# make install APXS=/path/to/apxs
修改apache的配置文件。
# cd /path/to/apache/conf
# cp httpd.conf httpd.conf.bak
用你喜欢的文本编辑程序,修改httpd.conf
要把下面两行去掉注释
LoadModule gzip_module libexec/mod_gzip.so
AddModule mod_gzip.c
然后在结尾添加如下配置:
# MOD_GZIP configuration
mod_gzip_on Yes
mod_gzip_minimum_file_size 1002
mod_gzip_maximum_file_size 0
mod_gzip_maximum_inmem_size 60000
mod_gzip_item_include mime "application/x-httpd-php"
mod_gzip_item_include mime text/*
mod_gzip_item_include mime "httpd/unix-directory"
mod_gzip_dechunk Yes
mod_gzip_temp_dir "/tmp"
mod_gzip_keep_workfiles No
mod_gzip_item_include file ".php3$"
mod_gzip_item_include file ".php$"
mod_gzip_item_include file ".txt$"
mod_gzip_item_include file ".html$"
mod_gzip_item_include file ".shtml$"
mod_gzip_item_exclude file ".css$"
mod_gzip_item_exclude file ".js$"
#更多想用gzip压缩的文件格式....
然后就可以启动了:
# /path/to/apache/bin/apachectl restart
如果发现有错误,根据提示重新修改httpd.conf。
推荐阅读
-
纯粹的使用html5实现账号注册页面
-
html页面导入php文件 使用include后多出一空白行的解决
-
使用html2canvas.js实现页面截图并显示或上传的示例代码
-
Html5页面内使用JSON动画的实现
-
HTML5实现页面切换激活的PageVisibility API使用初探
-
使用HTML5的JS选择器操作页面中的元素
-
基于curl数据采集之单页面采集函数get_html的使用
-
使用AngularJS来实现HTML页面嵌套的方法
-
Vue 使用iframe引用html页面实现vue和html页面方法的调用操作
-
解决vue 项目使用webpack打包后,直接打开dist文件夹下的index.html页面空白的问题