No you can't, you can do a redirect in a requesthandler, take a look at the SSO or deeplink modules from the appstore.
//finally, redirect
response.addHeader("location", getRelPath(request) + location);
response.setStatus(IMxRuntimeResponse.SEE_OTHER);
Edit 1:
You can find the jetty request by getHttpServletRequest().. You can give it a try