首页 > Web开发 > 详细

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

时间:2015-12-08 23:51:50      阅读:242      评论:0      收藏:0      [点我收藏+]

访问日志只需要记地址,不用记录图片。

对无用的图片日志做标记,针对标记做限制。打开

vim /usr/local/apache2/conf/extra/httpd-vhosts.conf

 

   ErrorLog "logs/denny.com-error_log"
   CustomLog "|/usr/local/apache2/bin/rotatelogs -l  /usr/local/apache2/logs/denny.com-access_%Y%m%d_log 86400" combined

改成

   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/denny.com-error_log"
   CustomLog "|/usr/local/apache2/bin/rotatelogs -l  /usr/local/apache2/logs/denny.com-access_%Y%m%d_log 86400" combined env=!image-request

 

查看文件是否正确,重启。

apachectl -t
/usr/local/apache2/bin/apachectl restart

 

查看日志

less /usr/local/apache2/logs/denny.com-access_20151209_log 

 

查看文件是否正确

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

原文:http://www.cnblogs.com/wangshaojun/p/5031167.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!