Apache Wamp [错误] (20024)给定路径格式错误或包含无效字符
Apache Wamp [error] (20024)The given path is misformatted or contained invalid characters
当我在 httpd-ssl.conf
中设置时:
CustomLog “C:/wamp/bin/apache/Apache2.2.11/logs/ssl_request.log” \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
我得到:
Apache Wamp [error] (20024)The given path is misformatted or contained invalid characters:invalid transfer log path \x93C:/wamp/bin/apache/Apache2.2.11/logs/ssl_request.log\x94.
在错误\x93C:/wamp/bin/apache/Apache2.2.11/logs/ssl_request.log\x94.
中,我们可以看到无效的字符是第一个和最后一个。对应 "double quotes".
使用 "
而不是 “
。
当我在 httpd-ssl.conf
中设置时:
CustomLog “C:/wamp/bin/apache/Apache2.2.11/logs/ssl_request.log” \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
我得到:
Apache Wamp [error] (20024)The given path is misformatted or contained invalid characters:invalid transfer log path \x93C:/wamp/bin/apache/Apache2.2.11/logs/ssl_request.log\x94.
在错误\x93C:/wamp/bin/apache/Apache2.2.11/logs/ssl_request.log\x94.
中,我们可以看到无效的字符是第一个和最后一个。对应 "double quotes".
使用 "
而不是 “
。