我在OpenShift中将 europe.example.org 和 example.eu 配置为域别名。
当调用 example.eu 时(例如通过curl -i http://example.eu
),我的OpenShift应用程序的逻辑会发送此HTTP 位置标头以执行重定向:< / p>
Location: http://europe.example.org/?from=example.eu
但是,OpenShift会干扰我发送的内容,实际上提交以下内容:
Location: http://example.eu/?from=example.eu
这会创建一个无限重定向循环。
如何阻止OpenShift执行此操作,而是通过我的应用实际所说的内容?
答案 0 :(得分:1)
尝试:
Location: http://@europe.example.org/?from=example.eu