looks like you've gotten additional very useful info. To answer your
earlier questions, we're currently running 2.0.54 on AIX 5.2
We're also using a heavily modified apachectl script which is reads
delimited instance parameters from records in a "table" file (simple
grep/awk). This allows us
As far as I know, it's an undocumented "feature". But, in my
experience, it does actually work quite well. While I vaguely recall a
note on the development list questioning whether or not this should be
removed, I would love to see this become a full-fledged documented
feature as it is very u
Maybe a combination of mod_proxy and mod_rewrite is what you're looking for.
Something like this:
RewriteCond %{HTTP_HOST} www.d1.com [NC]
RewriteRule ^(.*) http://m1/$1 [P,L]
RewriteCond %{HTTP_HOST} www.d2.com [NC]
RewriteRule ^(.*) http://m2/$1 [P,L]
I don't have a lot of experience with