Re: [EMAIL PROTECTED] Question: RewriteMap and context

2008-04-07 Thread lihao0129
On Sun, Apr 6, 2008 at 12:17 PM, Eric Covener [EMAIL PROTECTED] wrote: On Sat, Apr 5, 2008 at 9:09 PM, [EMAIL PROTECTED] wrote: From the Apache mod_rewrite documentation, the RewriteMap should be working under both server config and virtual host. I have the following RewriteMap rules:

Re: [EMAIL PROTECTED] Question: RewriteMap and context

2008-04-07 Thread Eric Covener
On Mon, Apr 7, 2008 at 10:51 AM, [EMAIL PROTECTED] wrote: Outside the VirtualHost container in my httpd.conf, I have tried: RewriteOptions inherit RewriteRule command rules.. You use RewriteOptions inherit in the scope you want to inherit to not from. This forces the current

Re: [EMAIL PROTECTED] Question: RewriteMap and context

2008-04-07 Thread lihao0129
On Mon, Apr 7, 2008 at 10:54 AM, Eric Covener [EMAIL PROTECTED] wrote: On Mon, Apr 7, 2008 at 10:51 AM, [EMAIL PROTECTED] wrote: Outside the VirtualHost container in my httpd.conf, I have tried: RewriteOptions inherit RewriteRule command rules.. You use RewriteOptions

Re: [EMAIL PROTECTED] Question: RewriteMap and context

2008-04-06 Thread Eric Covener
On Sat, Apr 5, 2008 at 9:09 PM, [EMAIL PROTECTED] wrote: From the Apache mod_rewrite documentation, the RewriteMap should be working under both server config and virtual host. I have the following RewriteMap rules: RewriteMap images txt:/path/to/img.map RewriteRule

[EMAIL PROTECTED] Question: RewriteMap and context

2008-04-05 Thread lihao0129
From the Apache mod_rewrite documentation, the RewriteMap should be working under both server config and virtual host. I have the following RewriteMap rules: RewriteMap images txt:/path/to/img.map RewriteRule ^/images/([0-9][0-9][0-9])(.*)$ /multimedias/${images:$1}/$2 [L,PT] which I