apache如果格式化错误日志的所记录的时间


apache的错误日志中所记录的时间很别扭,请问如何格式化呢?


 [Wed Oct 11 14:32:52 2000] [error] [client 127.0.0.1] client denied by server configuration: /export/home/live/ap/htdocs/test

调整为


 [2000/10/11 14:32:52] [error] [client 127.0.0.1] client denied by server configuration: /export/home/live/ap/htdocs/test

Linux apache

catcat 11 years, 2 months ago

更改httpd.conf中配置 LogFormat "%{%Y/%M/%d}t"%r\" %>s %b" common
具体可参考 mod_log_config 和strftime的man page。

其中时间格式可以使用strftime的时间格式。

nyzsfm answered 11 years, 2 months ago

Your Answer