Apache配置日志LogFormat
2017-11-01 本文已影响0人
_WhatsUp_
httpd.conf
LogFormat下面新增一条
LogFormat "%t %h %l %u "%{Referer}i" "%r" "%{Host}i%U" %>s %b %D "%{User-Agent}i"" MyLogFormat
%t时间,%h远端主机,%l远端登录名,%u远程用户名,%{Referer}i来路页面,%r请求的第一行,%{Host}i请求的域名,%U请求的URL路径,%>s状态,%b传送的字节数,%D处理本请求所用时间,%{User-Agent}i请求头
httpd-vhosts.conf文件
<VirtualHost *:80>
ServerAdmin webmaster@website.com
DocumentRoot "C:/webroot/www"
ServerName www.website.com
ErrorLog "logs/www.website.com-error.log"
CustomLog "logs/www.website.com-access.log" MyLogFormat
</VirtualHost>