János Löbb wrote:
On Feb 18, 2009, at 8:17 AM, Pete Helgren wrote:
Still struggling with this so I am reposting. I can't seem to find a
configuration that allows the images and links to properly display.
Info from prior posts:
I have a Tomcat application that serves up a web app when I use
a URL like this:
http://www.mywebsite.com:8080/MyAPP Which I wanted to change to this:
http://www.mywebsite.com/MyAPP
Using Apache I added the worker.properties file and the following
directives to an existing Apache server that has been serving several
sites.
#Tomcat Settings
# Mount the worker containing MyAPP
JKMount /MyAPP myappw
How about:
JkMount /MyApp* myappw
??
Or use the following at the Apache level :
<Location /MyApp>
SetHandler jakarta-servlet
</Location>
See here for details (also on JkMount above) :
http://tomcat.apache.org/connectors-doc/reference/apache.html
Scroll down to "Using SetHandler and Environment Variables"
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org