tags:

views:

385

answers:

1

I've got a Tomcat application mounted on /geo and that app has an 'index.jsp' that is accessible directly and works, but when I try to get apache to use it as a directory index entry it never shows up. More odd than this, if I remove the index.html from the DIrectoryIndex line in my httpd configuration, an access of '/' redirects some how to the main tomcat admin page.

Any ideas?

JkMount /geo/* worker1
DirectoryIndex /geo/index.jsp index.html
A: 

I think you want your DirectoryIndex without the /geo/

DirectoryIndex index.jsp index.html
Keith Randall
Tnx, will give this a try
jottos