LuKreme wrote:
> On Dec 3, 2009, at 20:13, "J. Bakshi" <joyd...@infoservices.in> wrote:
>
>> RewriteCond %{REQUEST_URI} !^webdav
>
> That's wrong.
>
> !^/webdav
>
> The / is part of the uri

Sorry for the mistake. I have corrected it but no luck :-(  Here is my
complete .htacess once again

` ` `
Options +FollowSymLinks

RewriteEngine On
RewriteRule ^typo3$ - [L]
RewriteRule ^typo3/.*$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteCond %{REQUEST_URI} !^/webdav
RewriteRule .* index.php
` ` `
 and here is my apache configuration to access webdav

` ` `
## webdav access

Alias /webdav/user1   /var/personal_work_area/user1

      <Location /webdav/user1 >
           DAV On
           ForceType text/plain
           SSLRequireSSL
           AuthType Basic
           AuthName "Personal work area"
           AuthUserFile  /home/svn/PASSWD
           Require user user1
       </Location>

` ` `

-- 
জয়দীপ বক্সী


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to