On Fri, Dec 5, 2008 at 9:05 PM, Clodoaldo Pinto Neto
<[EMAIL PROTECTED]> wrote:
> I'm using this config in Apache 2.2.3/Centos 5:
>
> RewriteMap redirect txt:/var/www/html/example/redirect.txt
>
> RewriteRule ^/(a|b|c|d|e)$ http://example.com/${redirect:$1} 
> [NC,R=permanent,L]
>
> redirect.txt:
> a x
> b y
> c z
> d k
> e j
>
> Since the redirected pages are many i would like to not have to put
> them all in RewriteRule ^(a|b|c|d|e)$ using in instead the
> redirect.txt map to populate that rewrite rule. Is it possible? If not
> what else can be done?

Can you peek at the map in a RewriteCond, and stop processing if
there's no entry (^$)?  Then you would drop all the specifics in your
RewriteRule regex.

-- 
Eric Covener
[EMAIL PROTECTED]

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to