diff options
author | Eric Covener <covener@apache.org> | 2015-08-03 22:09:34 +0200 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2015-08-03 22:09:34 +0200 |
commit | 069322678ed9d00e11645e8d411de06bd5c3b38b (patch) | |
tree | 206502eff6a5fd789dd02ee30d37633df131330b /docs | |
parent | Add HTTPD_VERSION and HTTPD_MMN to the variables available with apxs -q (diff) | |
download | apache2-069322678ed9d00e11645e8d411de06bd5c3b38b.tar.xz apache2-069322678ed9d00e11645e8d411de06bd5c3b38b.zip |
Allow cookies set by mod_rewrite to contain ':' by accepting
';' as an alternate separator. PR47241.
Submitted By: <bugzilla schermesser com>, covener
Committed By: covener
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1693963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/rewrite/flags.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/manual/rewrite/flags.xml b/docs/manual/rewrite/flags.xml index 58eaae5e00..e3685d87ef 100644 --- a/docs/manual/rewrite/flags.xml +++ b/docs/manual/rewrite/flags.xml @@ -137,6 +137,15 @@ follows:</p> [CO=NAME:VALUE:DOMAIN:lifetime:path:secure:httponly] </example> +<p>If a literal ':' character is needed in any of the cookie fields, an +alternate syntax is available. To opt-in to the alternate syntax, the cookie +"Name" should be preceded with a ';' character, and field separators should be +specified as ';'.</p> + +<example> +[CO=;NAME;VALUE:MOREVALUE;DOMAIN;lifetime;path;secure;httponly] +</example> + <p>You must declare a name, a value, and a domain for the cookie to be set.</p> <dl> |