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

时间:2017-10-04 16:35:24

标签: wamp wampserver

多年来没有使用过WAMP,但是今天我决定再次尝试使用WAMP来完成我正在进行的项目。我有一切设置和工作,但由于某种原因我在我的虚拟主机文件中定义的错误日志位置不起作用 - 所有日志条目仍然转到c:\ wamp64 \ logs \而不是自定义的默认文件我如下所示。

我的vhost文件是:

# 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>

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

1 个答案:

答案 0 :(得分:1)

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

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

WD

WD