如何禁用 apache 中的标头检查?

如何禁用 apache 中的标头检查?

我需要绕过具有标头字段Content type(请注意空格,与不同Content-Type)和值的格式错误的标头请求form-data并允许执行请求,但目前它返回400 bad request

我已经尝试了以下方法来取消设置它,但是由于格式错误的请求包含space在标头字段名称中,因此它不起作用。

RequestHeader unset Content type
RequestHeader unset "Content type"
RequestHeader unset 'Content type'
RequestHeader set Content-Type "multipart/form-data"

我也禁用了mod_headers但它仍然发送400 response

space我可以禁用检查或者允许字段名称中的标题吗?

PS. 我无法纠正客户端/应用程序上的格式错误的请求。

相关内容