卡饭网 > apache > 正文

apache虚拟主机访问日志配置例子

来源:本站整理 作者:梦在深巷 时间:2014-07-07 22:33:21

Linux系统配置方法:

将其改为

代码如下
ErrorLog “| /usr/local/apache/bin/rotatelogs /home/logs/www/%Y_%m_%d_error_log 86400 480″
CustomLog “| /usr/local/apache/bin/rotatelogs /home/logs/www/%Y_%m_%d_access_log 86400 480″ common

## 这是httpd.conf中的log日志代码:

代码如下
#ErrorLog "logs/error_log"
ErrorLog "|/usr/local/cronolog/sbin/cronolog /usr/local/apache-2.2.15/logs/error_log_%Y%m%d"
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "|/usr/local/cronolog/sbin/cronolog /usr/local/apache-2.2.15/logs/access_log_%Y%m%d" combined
CustomLog "|/usr/local/cronolog/sbin/cronolog /usr/local/apache-2.2.15/logs/referer_log" Referer
CustomLog "|/usr/local/cronolog/sbin/cronolog /usr/local/apache-2.2.15/logs/agent_log" Agent
#CustomLog "logs/access_log" combined
</IfModule>

Windows系统下配置方法:

代码如下

ErrorLog “|bin/rotatelogs.exe logs/site1/error-%y%m%d.log 86400 480″
CustomLog “|bin/rotatelogs.exe logs/site1/access-%y%m%d.log 86400 480″ common

具体访问日志例子

代码如下

<VirtualHost 192.168.1.3:588>
DocumentRoot "E:/zzz/"
ServerName 192.168.1.3

CustomLog "|bin/rotatelogs.exe logs/vicp_net_access-%y%m%d.log 86400 480" common

RewriteEngine On
RewriteRule /wp-([0-9]+)(.?)$ /plus/list.php?tid=$1
RewriteRule /wp-([0-9]+)-([0-9]+)-([0-9]+)(.?)$ /plus/list.php?tid=$1&totalresult=$2&ageNo=$3
RewriteRule /([0-9]+)(.?)$ /plus/view.php?arcID=$1

</VirtualHost>

相关推荐