how do I get apache to direct all directory links to tomcat for default document...
ex: http://localhost/example should go to http://localhost/example/index.jsp I have following JkMount Config.. JkMount /example/*.jsp ajp13 JkMount /example/servlet/* ajp13 I want to use apache for html and images, so I dont want to use JkMount /example/* ajp13 any thoughts ???? thanks -Raj >>> [EMAIL PROTECTED] 10/14/02 04:24PM >>> Since Tomcat only deals with JSP and servlets, this should be all you need: JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 What else would Tomcat serve? John > -----Original Message----- > From: Frank Liu [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 14, 2002 4:07 PM > To: [EMAIL PROTECTED] > Subject: static rules for jk/ajp13 > > > > How do I config httpd.conf so that apache will pass everything > to tomcat except *.gif and *.html/*.htm ? > Basically I want apache to default to pass to tomcat unless > otherwise told. > The docs I can find all talks the other way around: default to apache > and only pass to tomcat when you explicitly ask for certain urls. > > Frank > > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
