RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-29 Thread Axel-Stéphane SMORGRAV
blem, but I hope it will at least give you some leeds. -ascs From: Gary W. Smith [mailto:[EMAIL PROTECTED] Sent: Thursday, July 28, 2005 11:46 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Gary W. Smith
workaround for this scenario? > -Original Message- > From: Gary W. Smith [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 28, 2005 8:14 PM > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question > > Thanks, the NC worked like a cha

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Gary W. Smith
t; To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question > > On Thu, 28 Jul 2005 at 14:45, Gary W. Smith wrote: > > > So for that question, is there any way to force the case insensitivity > > for the entire string when doing a RuleRewrite. >

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Dan Goodes
On Thu, 28 Jul 2005 at 14:45, Gary W. Smith wrote: > So for that question, is there any way to force the case insensitivity > for the entire string when doing a RuleRewrite. Try the [NC] flag at the end of your RewriteRule:: RewriteRule ^/~/exchange /exchange/ [R,NC] (and whatever else you need

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Gary W. Smith
the general problem.     From: Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED] Sent: Thursday, July 28, 2005 8:17 AM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question   Does it work for you? If it does, leave it as it is. I do however

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Axel-Stéphane SMORGRAV
July 28, 2005 4:11 PMTo: users@httpd.apache.orgSubject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Gary W. Smith
@httpd.apache.org Subject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question   Pardon my ignorance, but what is that tilde (~) stuff doing in the RewriteRule ??   RewriteRule ^/~/[Ee]xchange /exchange/ [R] # This doesn't seem to work either #RewriteRule ^/~/exchange/i /exc

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-28 Thread Axel-Stéphane SMORGRAV
also consider using Burp Proxy.   -ascs From: Gary W. Smith [mailto:[EMAIL PROTECTED] Sent: Thursday, July 28, 2005 7:26 AMTo: users@httpd.apache.org; users@httpd.apache.org; users@httpd.apache.orgSubject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question We've been runnin

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-07-27 Thread Gary W. Smith
:49 AMTo: users@httpd.apache.orgSubject: RE: [EMAIL PROTECTED] Rewrite / reverse proxy question What about this:   If the URL does not start by /[Ee]xchange the user is redirected to /Exchange... I also suggest that if the user requests the root path /, he gets redirected to /Exchange   RewriteRule ^

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-06-13 Thread Gary W. Smith
This will work just fine.  Thanks.  I would redirect / to Exchange normally but it actually sends them somewhere else right now.    Gary From: Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED]Sent: Mon 6/13/2005 12:49 AMTo: users@httpd.apache.orgSubject: RE: [EMAIL PROTECTED] Rewrite

RE: [EMAIL PROTECTED] Rewrite / reverse proxy question

2005-06-13 Thread Axel-Stéphane SMORGRAV
What about this:   If the URL does not start by /[Ee]xchange the user is redirected to /Exchange... I also suggest that if the user requests the root path /, he gets redirected to /Exchange   RewriteRule ^/$ /Exchange [R]   RewriteCond $1 !^/[Ee]xchange RewriteRule (.*) /Exchange [R]   The a