美文网首页
Apache配置日志LogFormat

Apache配置日志LogFormat

作者: _WhatsUp_ | 来源:发表于2017-11-01 22:55 被阅读0次

    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>

    相关文章

      网友评论

          本文标题:Apache配置日志LogFormat

          本文链接:https://www.haomeiwen.com/subject/ysenpxtx.html