apache访问日志

[root@chy ~]# ls /usr/local/apache2.4/logs/
access_log  error_log   httpd.pid   
(查看apache日志路径,其中access是访问日志,error是出错日志)
[root@chy ~]# vim /usr/local/apache2.4/conf/httpd.conf
(在主配置文件里面定义访问日志)
  LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
(common格式详解其中%h为来源IP,%l是用户,%u也是用户,%t是时间,%r是requst行为,%s是状态码,%b是大小)
(combined详解
其中%h为来源IP,%l是用户,%u也是用户(由HTTP认证系统得到的访问该网页的客户名。有认证时才有效,输出中的符号 "-" 表示此处信息无效。),%t是时间,%r是requst行为,%s是状态码,%b是大小(最后这项是返回给客户端的不包括响应头的字节数。),\"%{User-Agent}i\"是用户代理(此项是客户浏览器提供的浏览器识别信息。),\"%{Referer}i\此项指明了该请求是从被哪个网页提交过来的。
[root@chy ~]# vim /usr/local/apache2.4/conf/extra/httpd-vhosts.conf 
(进入到虚拟主机配置文件中)
[root@chy ~]# vim /usr/local/apache2.4/conf/extra/httpd-vhosts.conf 


    DocumentRoot "/data/wwwroot/111.com"
    ServerName www.111.com
    ServerAlias www.exaple.com 222.com
    #
     #
      #AllowOverride AuthConfig 
      #AuthName "111.com user auth"
        #AuthType Basic
       # AuthUserFile /data/.htpasswd 
      #  require valid-user
     # 
      #
     
        RewriteEngine on
        RewriteCond %{HTTP_HOST} !^111.com$
        RewriteRule ^/(.*)$ http://111.com/$1 [R=301,L]
 
    ErrorLog "logs/111.com-error_log"
    CustomLog "logs/111.com.com-access_log" combined
 
将  ErrorLog "logs/111.com-error_log"
    CustomLog "logs/111.com-access_log" combined 这段内容的access日志变为combined格式

如下是一位博主写的apache访问日志详解,有需要的可以看看。
http://blog.csdn.net/zhuying_linux/article/details/6773912