gpt4 book ai didi

WAMP 虚拟主机错误日志位置不起作用?

转载 作者:行者123 更新时间:2023-12-02 03:46:28 27 4
gpt4 key购买 nike

已经很多年没有使用 WAMP 了,但今天决定在我即将从事的项目中再次尝试。我已完成所有设置并正常工作,但由于某种原因,我在虚拟主机文件中定义的错误日志位置无法正常工作 - 所有日志条目仍转到 c:\wamp64\logs\中的默认文件,而不是我的自定义文件具体如下。

我的虚拟主机文件是:

# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" common
</VirtualHost>

<VirtualHost *:80>
ServerName site.local
ServerAlias site.local
DocumentRoot "C:/Users/Support/Documents/My Web Sites/BS4/site.com"
<Directory "C:/Users/Support/Documents/My Web Sites/BS4/site.com">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
ErrorLog "logs/site.local-error.log"
CustomLog "logs/site.local-access.log" common
</VirtualHost>

我在这里遗漏了什么吗?我希望为我正在处理的每个“项目”拥有不同的日志(目前仅定义一个),但将它们分开更有意义。

最佳答案

更改日志文件的定义以包含完整路径。

您可能还想为 PHP 错误日志添加单独的日志文件。

ErrorLog "C:/wamp/logs/localhost-error.log"
CustomLog "C:/wamp/logs/localhost-access.log" common
php_value error_log "C:/wamp/logs/localhost.php.error.log"

ErrorLog "C:/wamp/logs/site.local-error.log"
CustomLog "C:/wamp/logs/site.local-access.log" common
php_value error_log "C:/wamp/logs/site.php.error.log"

关于WAMP 虚拟主机错误日志位置不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46569906/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com