我正在尝试将 API 调用从我的静态 Web 应用程序重定向到另一个函数应用程序,但我无法使用通配符。
路线匹配正确,但我希望该*
部分包含在重定向中。这是我的一个例子staticwebapp.config.json
{
"route": "/api/client/*",
"redirect": "https://xx.yy.net/api/client/*"
}
我希望请求/api/client/customer/get?customerId=xx
成为https://xx.yy.net/api/client/customer/get?customerId=xx
.
但是无论我尝试什么,它都只能通过硬路由到达我在重定向中放入的内容。使用代理可以使用功能,但我无法在静态 Web 应用程序中找到方法。