【发布时间】:2014-10-16 09:27:55
【问题描述】:
我们正在尝试使用 ARR(应用程序请求路由)和 URL 重写来设置反向代理机制。当我们使用 GET 方法请求时,重写工作正常 但是当我们为这种内容类型(x-form-urlencoded)请求的方法发送 Post 时,ARR 不会返回任何响应。我该如何解决这个问题?
<rewrite>
<rules>
<rule name="InboundGeneral" enabled="true" stopProcessing="true">
<match url="^(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://localhost:29341/{R:1}" logRewrittenUrl="true" />
</rule>
</rules>
</rewrite>
【问题讨论】:
-
任何人都可以帮助我吗?
-
“不返回任何响应”在 HTTP 代码方面是什么意思? 400? 500?还是中止?您在失败的请求跟踪中看到了什么?
标签: iis reverse-proxy arr