我们看访问日志的时候,发现好多比如图片,css,js很多这样,其实这些东西没有必要记的,如何去做呢?
## 编辑虚拟机配置文件
[root@wy ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
ErrorLog "logs/test.com-error_log"
SetEnvIf Request_URI ".*\.gif$" p_w_picpath-request
SetEnvIf Request_URI ".*\.jpg$" p_w_picpath-request
SetEnvIf Request_URI ".*\.png$" p_w_picpath-request
SetEnvIf Request_URI ".*\.bmp$" p_w_picpath-request
SetEnvIf Request_URI ".*\.swf$" p_w_picpath-request
SetEnvIf Request_URI ".*\.js$" p_w_picpath-request
SetEnvIf Request_URI ".*\.css$" p_w_picpath-request
CustomLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/test.com-access_%Y%m%d_log 86400" combined env=!p_w_picpath-request
解释说明:
SetEnvIf 设置匹配条件
p_w_picpath-request 定义的别名
env=!p_w_picpath-request 排除别名是p_w_picpath-request的项
## 检查并重新加载
[root@wy ~]# /usr/local/apache2/bin/apachectl -t
Syntax OK
[root@wy ~]# /usr/local/apache2/bin/apachectl graceful
## 访问下网页,再查看日志文件就不会记录那些图片,css,js
[root@wy ~]# cat /usr/local/apache2/logs/test.com-access_20161104_log