我用localhost网站配置了 IIS 10。
localhost 有一个反向代理来查询托管在 Fastly 上的服务器。
这是我的 IIS 10 规则
<rule name="Remote website Reverse Proxy" stopProcessing="true">
<match url="remotewebsite/(.*)" />
<action type="Rewrite" url="https://remotedomain.com/{R:1}" logRewrittenUrl="true" />
</rule>
我想通过查询http://localhost/remotewebsite/something来查询服务器https://remotedomain.com/something
我配置了反向代理,但出现错误:
快速错误:未知域:localhost。请检查该域是否已添加到服务中。详细信息:缓存-cdg20776-CDG
我不拥有远程域,也无法对其进行任何更改。如果我将规则操作类型更改为Redirect它可以工作。但我需要它是Rewrite。
有什么我可以添加到我的反向代理以使其工作的吗?
谢谢