We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In RewriteConfig, looks like the split on regex cannot parse out the literals correctly for the case like
url: \/foo\/(a|b|c)(\/.*)? replacement: /bar/$1$2
\/foo\/(a|b|c)(\/.*)?
/bar/$1$2
In the provided example, literals only contain /bar/ but there are two placeholders. This causes IndexOutOfBoundsException at here
/bar/
The text was updated successfully, but these errors were encountered:
Fix issue #636: RewriteConfig ending with two consecutive placeholders (
c1d8f6f
#638)
chrisgresty
No branches or pull requests
In RewriteConfig, looks like the split on regex cannot parse out the literals correctly for the case like
url:
\/foo\/(a|b|c)(\/.*)?
replacement:
/bar/$1$2
In the provided example, literals only contain
/bar/
but there are two placeholders. This causes IndexOutOfBoundsException at hereThe text was updated successfully, but these errors were encountered: