我需要将带有可变哈希码的 url 重定向到IIS10(Windows Server 2019)中具有相同哈希码的另一个 url 。
例子:
https://www.example.com/hello/sd54effg1g5s11d5111dwds21fds2f1ffd
需要重定向到:
https://subdomain.example.com/hello/sd54effg1g5s11d5111dwds21fds2f1ffd
目前我在 web.config 中有这个规则:
<rule name="rulename" stopProcessing="true">
<match url="^hello/[a-zA-Z0-9]+$" />
<conditions>
<add input="{HTTP_HOST}" pattern="^(https:\/\/www\.)example.com$" />
</conditions>
<action type="Redirect" url="https://subdomain.{HTTP_HOST}/{R:1}" />
</rule>