[EMAIL PROTECTED] wrote:
RewriteCond %{REMOTE_USER} ^([a-z0-9_]+)$
RewriteRule ^/mysvn/(.*) /svn/%1/$1 [L]
The first line places a valid username into %1.
The second rewrites "/mysvn/something" to "/svn/bob/something" when
the REMOTE_USER is "bob".
Invalid usernames will not pass the condition s
RewriteCond %{REMOTE_USER} ^([a-z0-9_]+)$
RewriteRule ^/mysvn/(.*) /svn/%1/$1 [L]
The first line places a valid username into %1.
The second rewrites "/mysvn/something" to "/svn/bob/something" when
the REMOTE_USER is "bob".
Invalid usernames will not pass the condition so "/mysvn" should
display a
Howdy!
Coming back from haitus of using Apache.
I've got a tricky question... How would one go about having it so that
mod_auth and mod_rewrite talk to one anther like this:
i have the file structure /var/svn/
It is to be used for WebDAV svn access -- its attached on the server to /svn/
I want it