打开 Apache 的 httpd.conf配置文件并找到下面两条配置
一般在Apache\conf
找到如何代码
ErrorLog logs/error.log
CustomLog logs/access.log common
直接注释掉(加#)
再加上这些代码 记得双引号改成英文
# 限制错误日志文件为 1M
ErrorLog “|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 1M”
# 每天生成一个错误日志文件
#ErrorLog “|bin/rotatelogs.exe -l logs/error-%Y-%m-%d.log 86400″
# 限制访问日志文件为 1M
CustomLog “|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 1M” common
# 每天生成一个访问日志文件
#CustomLog “|bin/rotatelogs.exe -l logs/access-%Y-%m-%d.log 86400″ common