Re: [EMAIL PROTECTED] a rather tricky mod_rewrite problem?

2008-11-16 Thread Morgan Gangwere
[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

Re: [EMAIL PROTECTED] a rather tricky mod_rewrite problem?

2008-11-15 Thread solprovider
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

[EMAIL PROTECTED] a rather tricky mod_rewrite problem?

2008-11-14 Thread morgan gangwere
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