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 Rewri
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 c
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
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 ^/images
>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 n