linux – Apache dav模块产生尸体:无法访问/(不支持WebDAV?)

前端之家收集整理的这篇文章主要介绍了linux – Apache dav模块产生尸体:无法访问/(不支持WebDAV?)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我安装了apache然后我可以从命令行访问默认页面
$wget http://127.0.1.1

在Web浏览器中使用webmin:

https://localhost:10000/

Servers>Apache WebServer>Global configuration>Configure Apache Modules>

启用dav模块:

Configure Apache Modules
Module    Current state
dav       Enable
dav_fs    Enable
dav_lock  Enable
<Enable Selected Modules>

在命令行重新启动apache:

$sudo /etc/init.d/apache2 restart

调用命令行dav客户端:

$cadaver http://127.0.1.1
Could not access / (not WebDAV-enabled?):
405 Method Not Allowed
Connection to `127.0.1.1' closed.
dav:!>

缺什么?

解决方法

Apache的错误日志说什么?我发现错误日志对于解决WebDAV错误非常有用.

您是否为任何网址启用了WebDAV?例:

<Location />
   Dav On
</Location>

你有没有设置DavLockDB?

原文链接:https://www.f2er.com/linux/398985.html

猜你在找的Linux相关文章