:
>
>> From: gpike [mailto:gop...@gmail.com]
>> Subject: Re: How to Map domain to a context using Mod_jk
>>
>> In tomcat adding a VirtualHost would require a restart.
>
> Not true; use the supplied host-manager (not manager) webapp to manipulate
> entries on the f
to accomplish that?
Pid Ster wrote:
>
> On 6 Oct 2009, at 05:56, gpike wrote:
>
>>
>> I have Virtual Hosts defined in Apache for each domain. I want to
>> map the
>> domain to a context in Tomcat. For instance I would like mysite.com
>> to map
>> to
I have Virtual Hosts defined in Apache for each domain. I want to map the
domain to a context in Tomcat. For instance I would like mysite.com to map
to /mysite_com in Tomcat. Would it be something like:
ServerName mysite.com
RewriteRule ^/(.*)$ /mysite_com/$1 [PT]
JkMoun