我使用Wamp sesrver,我得到了以下错误,我该如何解决这个问题?
[client 127.0.0.1] client denied by server configuration:D:/httpd-2.2-x64,referer: http:// localhost / sabredav /
我的D:/没有文件夹名称“httpd-2.2-x64”
看看你的wamp的httpd.conf文件,你可能会发现一个<Directory D:/httpd-2.2-x64> (或类似的)configuration块。 这个块可能会有类似的东西
order deny, allow deny from all
在它之内。 你可以改变deny from all的deny from all以allow from all摆脱那个错误信息。 你也许应该花一些时间看一下Apache核心configuration文档。