我们在 Windows Server 2019 上运行 IIS 10。我们在 localhost 的本地服务器上运行 EmbedIO。在 IIS 中,我们使用 URL 重写创建了反向代理规则。该网站在您第一次加载页面时没有任何问题。如果您点击刷新,浏览器会显示以下错误:
HTTP 错误 500.52 - URL 重写模块错误。*
当 HTTP 响应的内容被编码(“gzip”)时,不能应用出站重写规则。
如果您再次点击刷新并且页面正常加载。这种情况一遍又一遍地发生,页面加载正确,然后你点击刷新,你会收到这个:
500.52 错误信息
下面是我们正在使用的网络配置文件。出于安全考虑,我更改了我们服务器的名称。有没有人看到我们的配置有什么问题,或者他们可以建议我可以更改规则的任何内容吗?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<rewrite>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
<match filterByTags="A, Form, Img" pattern="^http(s)?://localhost:8686/(.*)" />
<action type="Rewrite" value="http{R:1}://server1.mydomain.com/{R:2}" />
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="(.*)" />
<action type="Rewrite" url="http://localhost:8686/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
<system.web>
<customErrors mode="Off" />
<compilation debug="true" />
</system.web>
</configuration>
提前致谢,
-麦克风