svn commit: r1934698 - httpd/httpd/branches/2.4.x/docs/manual/rewrite
| Newsgroups | gmane.comp.apache.cvs |
|---|---|
| Message-ID | <177992696047.16596.15404965522647513388@svn03-he-fi> |
Author: rbowen
Date: Thu May 28 00:09:20 2026
New Revision: 1934698
Log:
Correct backreference in ACME RedirectMatch
Modified:
httpd/httpd/branches/2.4.x/docs/manual/rewrite/remapping.xml
Modified: httpd/httpd/branches/2.4.x/docs/manual/rewrite/remapping.xml
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/rewrite/remapping.xml Thu May 28 00:09:00 2026 (r1934697)
+++ httpd/httpd/branches/2.4.x/docs/manual/rewrite/remapping.xml Thu May 28 00:09:20 2026 (r1934698)
@@ -221,7 +221,7 @@ RewriteRule "^(.*)" "https://%{SERVER_NA
</Directory>
# Everything else goes to HTTPS
- RedirectMatch permanent "^/(?!\.well-known/acme-challenge/)" "https://www.example.com/$0"
+ RedirectMatch permanent "^/(?!\.well-known/acme-challenge/)" "https://www.example.com/$1"
</VirtualHost>
</highlight>