Files
cfdav/README.windows.md

25 lines
718 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Windows WebDAV Mount Guide (cfdav)
## 1) 先确认站点
- WebDAV 地址:`https://<your-domain>/dav/`
- Basic Auth邮箱 + 密码
## 2) Windows 资源管理器挂载
1. 打开“此电脑”
2. 顶部菜单 → “映射网络驱动器”
3. 地址输入:
`https://<your-domain>/dav/`
4. 使用其他凭据 → 输入账号/密码
## 3) 常见问题
- **提示“文件夹无效”**
- 你的服务必须在 401 响应上携带 `DAV`
- 必须支持 `LOCK/UNLOCK`
- **无法列目录**
- 确认 `PROPFIND` 返回 207并根节点 `<href>` 与请求路径完全一致
## 4) 测试命令
```bash
curl -u user@example.com:password -X PROPFIND -H 'Depth: 1' https://<your-domain>/dav/
```