From 4375d7a85669280b1099bb994304728717452aca Mon Sep 17 00:00:00 2001 From: "Y.Horie" Date: Wed, 1 Apr 2026 08:29:34 +0900 Subject: [PATCH] doc: fix unencoded characters with ngx.escape_uri --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 0aa941f970..4b5256578c 100644 --- a/README.markdown +++ b/README.markdown @@ -6432,7 +6432,7 @@ It accepts the following values (defaults to `2`): `?`, 0x00 ~ 0x1F, 0x7F ~ 0xFF will be escaped. * `2`: escape `str` as a URI component. All characters except alphabetic characters, digits, `-`, `.`, `_`, -`~` will be encoded as `%XX`. +`~`, `!`, `'`, `(`, `)`, `*` will be encoded as `%XX`. [Back to TOC](#nginx-api-for-lua)