Greetings... In your mod_jk.conf, you have JkMount directives like so:
JkMount /servlet/* ajp13 JkMount /jsp-examples/* ajp13 JkMount /servlets-examples/* ajp13 I find that in your mounts that if you simply remove the trailing slash in these, you can then call those URIs without the slash: JkMount /servlet* ajp13 JkMount /jsp-examples* ajp13 JkMount /servlets-examples* ajp13 So, you can call http://your.server.com:8080/servlet http://your.server.com:8080/jsp-examples http://your.server.com:8080/servlets-examples Or, if you've mapped those guys through a connector to the parent web server: http://your.server.com/servlet http://your.server.com/jsp-examples http://your.server.com/servlets-examples I hope that helps. Jerald Sheets Systems Administrator The Weather Channel Interactive -----Original Message----- From: Edmund Urbani [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 9:43 AM To: [email protected] Subject: how do i prevent tomcat5 from adding trailing slash? hi! i ran into some trouble with tomcat5 and its slash adding behaviour. there's this MS WebFolder client (M$ for WebDAV), that does not seem to be able to cope with status 302 redirects in some situations. in order to work around this problem i modified the class org.apache.tomcat.util.http.mapper.Mapper, so it would not add a trailing slash for an URL like http://host:8080/slide. But since I really don't want to (and usually don't need to) change anything about tomcat, I'd rather have a configuration option for this. I know that the old tomcat4 did not do redirects for this either, so I thought maybe someone would add a config option to revert to that old behaviour. if not, is there a any way to prevent this redirect without modifying tomcat5's source? Cheers, Edmund --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
