#asp.net-core #url-rewriting
Вопрос:
У меня есть похожие URL-адреса. Но я не знаю, как написать одно правило для моей ситуации.
lt;rule name="stage"gt; lt;match url="stage.some.com/test/docs/overview.htm" /gt; lt;action type="Redirect" url="https://stage-docs.some.com/" appendQueryString="false" redirectType="Permanent" /gt; lt;/rulegt; lt;rule name="prod"gt; lt;match url="some.com/test/docs/overview.htm" /gt; lt;action type="Redirect" url="https://docs.some.com/" appendQueryString="false" redirectType="Permanent" /gt; lt;/rulegt;
Первое правило имеет доменную стадию.
Любая помощь будет очень признательна.