I realized an issue with Location today:

$self->PageUser->ApacheRequest->headers_out->set( Location => 'http:// www.domain.com?a=b,c,d' )

will only return the location as
        http://www.domain.com?a=b

which makes sense as , is a reserved character

unfortunately, not all websites 'play by the rules' -- and will create urls with a , in it

can anyone suggest a way to force the ',' in a Location header ?

I don't want to do an url-encoded ',' because i'm trying to preserve the original offsite encoding.


Reply via email to