I'm a newbie to tomcat. My question is, can tomcat have the webapps sub-directories which include additional webapps? For example the root is in /webapps folder. But there is another folder same level as root folder which contains more webapps.
/webapps
--- ROOT
--- someFolder (just a folder)
---- app1
---- app2
So when accessing the url it is like http://localhost:8080/someFolder/app1
but also can access the root app as http://localhost:8080/
I hope it makes sense.