If you are mapping: JkMount /myapp/* ajp13
Then it will forward all requests for http://mysite.com/myapp/... to Tomcat. To avoid this map: JkMount /myapp/*.jsp ajp13 Or: JkMount /*.jsp ajp13 This way only requests for jsp files will be forwarded to Tomcat and everything not specified will be picked up by Apache. Charlie > -----Original Message----- > From: Austin Gonyou [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 24, 2002 5:19 PM > To: Tomcat Users List > Subject: mod_jk target problem. > > > In our mod_jk.conf we've only got a couple of paths used for JkMount, > but mod_jk still seems to be handing off everything from / to tomcat. > > We're using Tomcat 3.2.3 and mod_jk 3.2.3. We'll be upgrading, but > that's not for a little bit yet, unless this can be fixed by upgrading. > > We use Apache 1.3.24 on Linux. > > Any help on this problem is appreciated. TIA. > > -- > Austin Gonyou <[EMAIL PROTECTED]> > Coremetrics, Inc. > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
