1

一个简单、简单的代理重定向到我们的 www 子域会导致查询字符串被剥离。

没有理由这样做。

采取了这个网址.. h​​ttps://mydomain.ok/whatever?foo=something

应该重定向到.. https://www.mydomain.ok/whatever?foo=something

相反,它目前重定向到.. https://www.mydomain.ok/whatever

任何帮助将不胜感激。很难正确地测试这一点。

对于以下内容,REDIRECT_TO_WEBSITE=www.domain.com

这是示例配置:

{
  "$schema": "http://json.schemastore.org/proxies",
  "proxies": {
    "api": {
      "matchCondition": {
        "route": "/api/{*path}"
      },
      "backendUri": "https://%WEBSITE_HOSTNAME%/api/{path}"
    },
    "rest": {
      "matchCondition": {
        "route": "{*rest}"
      },
      "responseOverrides": {
        "response.statusCode": "302",
        "response.headers.Location": "https://%REDIRECT_TO_WEBSITE%/{rest}",
      },
    }
  }
}
4

0 回答 0