<?xml version="1.0" encoding="UTF-8" ?><oembed><version>1.0</version><provider_name>Jui-Nan Lin&#039;s Blog</provider_name><provider_url>https://jnlin.org</provider_url><author_name>jnlin</author_name><author_url>https://jnlin.org/author/jnlin/</author_url><title>WebDAV</title><html>基本上按照 &lt;a href=&quot;http://httpd.apache.org/docs/2.0/mod/mod_dav.html&quot;&gt;Apache mod_dav 的說明&lt;/a&gt;就可以安裝完成了，但若要讓WinXP的網路芳鄰要能存取DAV Folder，必須將Virtual Host 的 root (/) 設成 DAV Enabled，否則會一直要認證...

&lt;pre&gt;
&lt;virtualhost *:80&gt;
ServerName share.example.org
DocumentRoot &quot;/home/www/share&quot;
&lt;directory &quot;/home/www/share&quot;&gt;
    Options Indexes FollowSymLinks MultiViews
    AllowOverride AuthConfig
    Order allow,deny
    allow from all
&lt;/directory&gt;
ErrorLog /home/www/logs/share-error.log
CustomLog /home/www/logs/share-access.log combined

DavLockDB /tmp/DavLock

&lt;location /&gt;
    Dav On
    AuthType Basic
    AuthName DAV
    AuthUserFile /home/www/auth-file
    Require valid-user
&lt;/location&gt;
&lt;/virtualhost&gt;

&lt;/pre&gt;
</html><type>rich</type></oembed>