从重写中排除 URL
exclude a URL from rewrites
我在 iis
上有一个 nodejs
申请 运行。
我有 url 重写规则,将所有请求发送到自定义 server.js
页面。
我想添加新规则或修改现有规则,以便特定 url /something
到达 iis 而不是我编写的规则。
我目前的规则:
<rewrite>
<rules>
<rule name="node">
<match url="/*" />
<action type="Rewrite" url="server.js" />
</rule>
</rules>
</rewrite>
请帮忙解决这个问题。
<rule name="sendToNode">
<match url="/*" />
<conditions>
<add input="{URL}" pattern="/something$" negate="true" />
</conditions>
<action type="Rewrite" url="server.js" />
</rule>
我在 iis
上有一个 nodejs
申请 运行。
我有 url 重写规则,将所有请求发送到自定义 server.js
页面。
我想添加新规则或修改现有规则,以便特定 url /something
到达 iis 而不是我编写的规则。
我目前的规则:
<rewrite>
<rules>
<rule name="node">
<match url="/*" />
<action type="Rewrite" url="server.js" />
</rule>
</rules>
</rewrite>
请帮忙解决这个问题。
<rule name="sendToNode">
<match url="/*" />
<conditions>
<add input="{URL}" pattern="/something$" negate="true" />
</conditions>
<action type="Rewrite" url="server.js" />
</rule>