I want to be able to access the same web application using multiple paths, but all containing the word "forums". I need it to be only 1 web app because I have subsites accessing the same pages and data and so if I create multpile web apps the cache of each becomes out of sync.
The two paths forwarded by my Apache Web Server to Tomcat are:
/forums
/iiie/forums/
My current context tag in server.xml is below. This obviously maps fine for /forums. Is there a wild card character which states that any path containing "forums" should use this web app?
If not can anyone recommend another way around this?
<Context path="/forums" docBase="c:\ debug="0" reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger" prefix="forums-" suffix=".log" timestamp="true"/>
</Context>
The two paths forwarded by my Apache Web Server to Tomcat are:
/forums
/iiie/forums/
My current context tag in server.xml is below. This obviously maps fine for /forums. Is there a wild card character which states that any path containing "forums" should use this web app?
If not can anyone recommend another way around this?
<Context path="/forums" docBase="c:\ debug="0" reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger" prefix="forums-" suffix=".log" timestamp="true"/>
</Context>