我不知道在web.config文件中使用.env变量的正确语法。或者,即使有可能。 我有一个变量REACT_APP_URL = www.dev.contoso.com,一个用于产品www.contoso.com 我想将其注入模式和重定向URL。因此,如果domain是dev,则将其重定向到dev,如果其prod,则将重定向到prod。 `
<conditions>
<add input="{HTTP_HOST}" negate="true" pattern="^www\.contoso\.com$" />
</conditions>
<action type="Redirect" url="https://www.constoso.com/{R:0}" redirectType="Permanent" />
`