How would I setup Jetty to forward only a specific parent path to a directory? For example when the user requests: localhost/ it should go to localhost/CorrectDirectory. Any requests such as localhost/AnotherDirectory is correct?
The documentation on the RewriteHandler gives:
<Set name="handler">
<New id="Handlers" class="org.mortbay.jetty.handler.RewriteHandler">
<Set name="rewriteRequestURI">false</Set>
<Set name="rewritePathInfo">false</Set>
<Set name="originalPathAttribute">requestedPath</Set>
<Call name="addRewriteRule"><Arg>/other/*</Arg><Arg>/test</Arg></Call>
<Call name="addRewriteRule"><Arg>/test/*</Arg><Arg></Arg></Call>
<Call name="addRewriteRule"><Arg>/*</Arg><Arg>/test</Arg></Call>
<Set name="handler">
From the looks of it, if I attempted to put in a rewrite rule for localhost/ I'd have to name every single subdirectory to prevent a direct from say localhost/DirectoryTwo to localhost/CorrectDirectory/DirectoryTwo (which would be incorrect).