You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: in my experience, apache requires NE flag only in a redirect, otherwise the default is not escaped, but the documentation does not confirm. In the tester is required NE flag in first RewriteRule too - I'm not sure if it's another tester bug.
The text was updated successfully, but these errors were encountered:
We normally have pretty good consistency with apache for the NE flag (we have a set of rules containing this flag tested both against our app and against apache giving the same result).
We have not implemented the N flag and backreferences inside the E flag yet though.
Apache documentation says about flag E
But in the tester, neither $N nor %N is expanded.
For url
http://example.com/file.php?one=1&two=2&three=3
and rulestester returns
http://example.com/file.php?%1&%2
Apache returns
http://example.com/file.php?one=1&two=2&three=3
Note: in my experience, apache requires NE flag only in a redirect, otherwise the default is not escaped, but the documentation does not confirm. In the tester is required NE flag in first RewriteRule too - I'm not sure if it's another tester bug.
The text was updated successfully, but these errors were encountered: