You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by je...@earthlink.net on 2001/12/16 17:40:49 UTC

mod_headers/

In trying to make our site P3P compliant I am now sending the P3P
header (with compact policy as IE6 requires) by adding this to httpd.conf:

Header append P3P "..."

It works fine in most cases, however if there is a query string that contains
& in the requested URL the header is NOT appended.

So for example these URLs all work fine and the header is appended:

http://www.mysite.com/test.html
http://www.mysite.com/test.html?foo
etc.

However, if you request http://www.mysite.com/test.html?foo&bar or use
any other query string with & in it, the header is NOT appended at all.

Is this a bug in mod_headers, or am I missing something here?