We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When there is a Content-Type header in the request,
Content-Type
My PHP environment will set both CONTENT_TYPE and HTTP_CONTENT_TYPE to the $_SERVER variable.
CONTENT_TYPE
HTTP_CONTENT_TYPE
$_SERVER
also Content-Length or any Content-* header.
Content-Length
php-cross-domain-proxy/proxy.php
Line 67 in be37139
This code causes duplicated Content-Type headers sent to target URL.
Most servers just ignore duplicated headers and automatically choose the last one,
but some strict server will response a 400 Bad Request when duplicated headers received.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When there is a
Content-Type
header in the request,My PHP environment will set both
CONTENT_TYPE
andHTTP_CONTENT_TYPE
to the$_SERVER
variable.also
Content-Length
or any Content-* header.php-cross-domain-proxy/proxy.php
Line 67 in be37139
This code causes duplicated Content-Type headers sent to target URL.
Most servers just ignore duplicated headers and automatically choose the last one,
but some strict server will response a 400 Bad Request when duplicated headers received.
The text was updated successfully, but these errors were encountered: