apache不记录指定文件类型日志

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache不记录指定文件类型日志相关的知识,希望对你有一定的参考价值。

Apache日志中有许多不需要记录的,比如图片图像什么的。

这就需要我们去设置虚拟主机文件,把图片等一些不需要记录的去做一个标记,然后根据这个标记去做限制。

 

具体操作:

[[email protected] logs]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf

 

SetEnvIf Request_URI ".*\.gif$" image-request
SetEnvIf Request_URI ".*\.jpg$" image-request
SetEnvIf Request_URI ".*\.png$" image-request
SetEnvIf Request_URI ".*\.bmp$" image-request
SetEnvIf Request_URI ".*\.swf$" image-request
SetEnvIf Request_URI ".*\.js$" image-request
SetEnvIf Request_URI ".*\.css$" image-request 
ErrorLog "logs/test.com-error_log"
CustomLog "|/usr/local/apache2/bin/rotatelogs -l 

/usr/local/apache2/logs/test.com-access_%Y%m%d_log 86400" combined env=!image-request


//Request_URI 是一个变量名。//env=!image-request取一个反义,不记录image-request

技术分享

[[email protected] logs]# apachectl -t

Syntax OK

[[email protected] logs]# apachectl graceful

 

再次刷新一下网页,然后去去看日志就不在记录以.gif  .jpg  .png等。


以上是关于apache不记录指定文件类型日志的主要内容,如果未能解决你的问题,请参考以下文章

Apache不记录指定文件类型日志

apache 不记录指定文件类型的日志

Apache不记录指定文件类型日志---模块

Apache 配置不记录指定文件类型的日志

LAMP--Apache 不记录指定文件类型的日志

访问日志不记录指定文件类型 访问日志切割 静态元素过期时间