RE: [EMAIL PROTECTED] % mod_proxy URL issue

2005-09-30 Thread Axel-Stéphane SMORGRAV
Is it a good idea to fork a sed for each request? The RewriteRule condition will accept any URL path _containing_ /exchange/... and proxy it to what host? There are built-in functions available for RewriteMap, including functions for encoding and decoding URLs. I suggest that you use them

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/ ---