RE: need final / in url

2005-09-21 Thread David Thielen
That was it - thanks - dave -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 20, 2005 11:42 PM To: Tomcat Users List Subject: Re: need final / in url David Thielen wrote: > > The url www.windward.net/forums fails while www.windward.net/

Re: need final / in url

2005-09-21 Thread Joost de Heer
Mladen Turk said: > David Thielen wrote: >> >> The url www.windward.net/forums fails while www.windward.net/forums/ >> succeeds. >> >> My uriworkermap has: >> >> /forums/*=ajp13w >> > > try: > /forums|/*=ajp13w > > This will actually create two maps: > /forums=ajp13w > /forums/*=ajp13w > > Regards,

Re: need final / in url

2005-09-20 Thread Mladen Turk
David Thielen wrote: The url www.windward.net/forums fails while www.windward.net/forums/ succeeds. My uriworkermap has: /forums/*=ajp13w try: /forums|/*=ajp13w This will actually create two maps: /forums=ajp13w /forums/*=ajp13w Regards, Mladen. --

need final / in url

2005-09-20 Thread David Thielen
Hi; The url www.windward.net/forums fails while www.windward.net/forums/ succeeds. My uriworkermap has: /forums/*=ajp13w I understand that isapi_redirect sees the first as a filename - but shouldn't it also look for it as a servlet? Thanks - dave