redirection with out sending client a 302 Moved Temporarily
I am familiar with the NameTrans fn="redirect" and fn="mozilla-redirect", however they send a 302 Moved Temporarily response to the client.
Is there a way to have the web server redirect internally so that there is not a round trip to the browser?
I am wanting to change a old and well established path in our application to a different path but I am trying to do it with out the latency of a redirect to the browser.
BTW the old path accessed images from docroot and now I need to route them through a servlet. The path is NOT relative to our web application. The only option I can think of is to create a new web app with the path that is in use and have it forward the request within the Servlet Container. I would rather do it without having to define a new web app and servlet though
Thanks,
Bret