[Bug 70084] rewrite recipe for ACME challenge exemption failing
[email protected] Tue, 02 Jun 2026 12:58:00 +0000
| Newsgroups | gmane.comp.apache.documentation |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://bz.apache.org/bugzilla/show_bug.cgi?id=3D70084 Rich Bowen <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|REOPENED |RESOLVED --- Comment #4 from Rich Bowen <[email protected]> --- Fixed in r1934878 (trunk) and r1934879 (2.4). The issue was that the negative lookahead (?!...) is zero-width and non-capturing =E2=80=94 it asserts a condition but doesn't consume characte= rs and produces no backreference. So $1 was always empty. The fix adds an explicit capturing group (.*)$ after the lookahead, so $1 now correctly contains the remainder of the URL-path. Thank you for the clear bug report and the two proposed fixes =E2=80=94 you= were spot on. Sorry for the false start on the first attempt. --=20 You are receiving this mail because: You are the assignee for the bug.=