Merge remote-tracking branch 'remotes/origin/issue-1642' into jetty-9.4.x
This commit is contained in:
commit
2bcdf29cb3
|
@ -181,24 +181,27 @@ public class RuleContainer extends Rule
|
|||
request.setAttribute(_originalQueryStringAttribute,query);
|
||||
}
|
||||
|
||||
// Ugly hack, we should just pass baseRequest into the API from RewriteHandler itself.
|
||||
Request baseRequest = Request.getBaseRequest(request);
|
||||
|
||||
if (_rewriteRequestURI)
|
||||
{
|
||||
String encoded=URIUtil.encodePath(applied);
|
||||
if (rule instanceof Rule.ApplyURI)
|
||||
((Rule.ApplyURI)rule).applyURI((Request)request,((Request)request).getRequestURI(), encoded);
|
||||
((Rule.ApplyURI)rule).applyURI(baseRequest, baseRequest.getRequestURI(), encoded);
|
||||
else
|
||||
((Request)request).setURIPathQuery(encoded);
|
||||
baseRequest.setURIPathQuery(encoded);
|
||||
}
|
||||
|
||||
if (_rewritePathInfo)
|
||||
((Request)request).setPathInfo(applied);
|
||||
baseRequest.setPathInfo(applied);
|
||||
|
||||
target=applied;
|
||||
|
||||
if (rule.isHandling())
|
||||
{
|
||||
LOG.debug("handling {}",rule);
|
||||
Request.getBaseRequest(request).setHandled(true);
|
||||
baseRequest.setHandled(true);
|
||||
}
|
||||
|
||||
if (rule.isTerminating())
|
||||
|
|
Loading…
Reference in New Issue