RE: [EMAIL PROTECTED] % mod_proxy URL issue

2005-09-30 Thread Axel-Stéphane SMORGRAV
@httpd.apache.org Subject: [EMAIL PROTECTED] % mod_proxy URL issue Is it possible to have a mod_rewrite rule which will rewrite a % with a %25? Below is a hack for Outlook Web Access which, when reverse-proxied, apache2 chokes on when a % is in a subject of an email (and thus in the URL) unless

Re: [EMAIL PROTECTED] % mod_proxy URL issue

2005-09-30 Thread Covington, Chris
Thanks ascs, This works perfectly: #OWA % character in email subject fix RewriteEngine On RewriteMap percentsubject int:escape RewriteCond $1 ^/exchange/.*\%.*$ RewriteRule (/exchange/.*) ${percentsubject:$1} [P] I've added it to: http://www-personal.umich.edu/~malth/gaptuning/apache/ ---

[EMAIL PROTECTED] % mod_proxy URL issue

2005-09-29 Thread Covington, Chris
Is it possible to have a mod_rewrite rule which will rewrite a % with a %25? Below is a hack for Outlook Web Access which, when reverse-proxied, apache2 chokes on when a % is in a subject of an email (and thus in the URL) unless the following is done. Chris Insert this right before your