Hello,
When I start up tomcat, it starts serving out of localhost:8080/. I would like it to start serving out of localhost:8080/aaa. I dont want to replace the "root" webapp with the "aaa" webapp, I want tomcat to treat "/aaa" like "/" in the sense that before where I could do something like
- localhost:8080/ --> root webapp
- localhost:8080/webapp1 --> webapp1
- etc.
I now want to do something like:
- localhost:8080/aaa ---> root webapp
- localhost:8080/aaa/webapp1 --> webapp1
- etc.
Any help would be great.