如何使用 nginx 更改 http 标头

如何使用 nginx 更改 http 标头

我们遇到一个问题,后端系统要求 Content-Type http 标头的参数遵循一定的顺序。

例如(请注意type="text/xml"的位置):

Content-Type: multipart/related; boundary="-=Part.0.57208b0e-3948-44e6-b15a-9bbfa5f0074b=-"; type="text/xml"; start="<0>"; start-info="text/xml"

应该是(注意type="text/xml"的位置):

Content-Type: multipart/related; type="text/xml"; boundary="-=Part.0.57208b0e-3948-44e6-b15a-9bbfa5f0074b=-"; start="<0>"; start-info="text/xml"

我找到了模块 HttpHeadersMoreModule。我面临的挑战是我需要更改字符串的顺序,但保留值。有什么建议可以用 nginix 解决这个问题吗?

问候,nidkil

相关内容