Re: [EMAIL PROTECTED] How to use mod_rewrite

2008-05-22 Thread Eric Covener
On Thu, May 22, 2008 at 6:09 PM, Sarmah, Purandar <[EMAIL PROTECTED]> wrote: > our application using http://myhost.com instead of http://myhost.com:7779. > > Meaning without typing port number in the address bar even though it is > > not port 80. > use mod_rewrite and whether port number can be h

[EMAIL PROTECTED] How to use mod_rewrite

2008-05-22 Thread Sarmah, Purandar
Hi, I am an end user of Apache HTTP server. I have a need to create aliases. We use Apache HTTP through Oracle Application Server 10g. Oracle support told me to use mod_rewrite, mod_alias to create aliases. I have been able to put aliases in httpd.conf file to make it work. While I read mod_rewri

Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-30 Thread Bhavin Modi
On 9/29/05, Joshua Slive <[EMAIL PROTECTED]> wrote: On 9/29/05, Bhavin Modi <[EMAIL PROTECTED]> wrote: >RewriteRule ^/users/$ /users/%{REMOTE_USER} [R]> The %{REMOTE_USER} returns a value like> "uid=testuser,ou=people,dc=domain,dc=com", so I need to> filter "testuser" from this string. >>

RE: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-30 Thread Boyle Owen
> -Original Message- > From: Nick Couchman [mailto:[EMAIL PROTECTED] > Sent: Freitag, 30. September 2005 16:19 > To: [EMAIL PROTECTED]; Bhavin Modi; users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER} > > > I'm

Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-30 Thread Nick Couchman
I'm looking to do the same thing as Bhavin, but with a little twist: I'd like to be able for the users to save/upload files under their user id's. I'm not sure this is actually possible - maybe someone can tell me whether or not it is possible and, if it is possible, how you would go about doin

Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-29 Thread Joshua Slive
On 9/29/05, Bhavin Modi <[EMAIL PROTECTED]> wrote: >RewriteRule ^/users/$ /users/%{REMOTE_USER} [R] > The %{REMOTE_USER} returns a value like > "uid=testuser,ou=people,dc=domain,dc=com", so I need to > filter "testuser" from this string. > > Is there any other way to do what I am trying to

[EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-29 Thread Bhavin Modi
Hi,   I am trying to setup a webdav server with apache 2.0.46 on Redhat Enterprise Linux 3 where users are authenticated using the module mod_authz_ldap with user information stored in openldap. The problem is that I want an authenticated user to be able to access only his/her directory. There are