Vasanth Kumar ravi schrieb:
> Rainer,
> I was able to resolve the issue...and the root cause was simple...
> it was my mistake...
> in the conf file I had mentioned /examples/* worker1
> I was trying to access the link as http://localhost/examples which is
> supposed to be http://localhost/examples/
> Cos of the / , I was not able to access the page, now everythin works fine
> ....
> Thanks for your help guys...though it appears silly...

Fine. There is also a shortcut

JkMount /something|/* myworker

is exactly equivalent to the two rules

JkMount /something/* myworker
JkMount /something myworker

Some /something will be forwarded as well as
/something/and/somthing/else, but not /somethingelse.

Technically "JkMount a|b" is equivalent to "JkMount a" and "JkMount ab".

Regards,

Rainer


---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to