Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
15.9k views
in Technique[技术] by (71.8m points)

redirect - How add exception in IIS url rewrite (ASP NET Core)?

I have rule:

 <rule name="main" stopProcessing="true">
      <match url="main/([^.]*)/$" />
      <action type="Redirect" url="/main/" appendQueryString="false" redirectType="Permanent" />
 </rule>

References /main/xxxx/ go to /main/, but I need make rule with one reference (/main/docs/) whitch doesn`t have redirect.

Help me please make exception in rule

question from:https://stackoverflow.com/questions/65950629/how-add-exception-in-iis-url-rewrite-asp-net-core

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

References /main/xxxx/ go to /main/, but I need make rule with one reference (/main/docs/) whitch doesn`t have redirect.

To achieve the requirement, you can try to add a condition to the rule, like below.

<rule name="main" stopProcessing="true">
    <match url="main/([^.]*)/$" />
    <conditions>
        <add input="{REQUEST_URI}" pattern="main/doc/" negate="true" />
    </conditions>
    <action type="Redirect" url="/main/" appendQueryString="false" redirectType="Permanent" />
</rule>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...