Disable IIS7 URL Forwarding Based on Each Site?

I have many global rules for rewriting IIS7 URLs and they apply to all sites by default. Well, there are a few sites that I would like to disable for this rewriting inheritance for all the rules. How can i do this? I tried the following without joy:

 <rewrite>
<rules>
    <clear />
</rules>
  </rewrite>
+5
source share
2 answers

Sorry, this is not possible to do:

URL- . applicationHost.config , . URL- (.. URI ).

, URL, .

http://learn.iis.net/page.aspx/468/using-global-and-distributed-rewrite-rules/

+4

, , web.config , . , / .

:

        <rule name="HTTP to HTTPS Redirect" stopProcessing="true">
            <match url="(.*)" />
            <conditions logicalGrouping="MatchAll">
                <add input="{HTTPS}" pattern="off" />
                <!-- Opt-in to rule via presense of a local file -->
                <add input="{DOCUMENT_ROOT}/Local/rewrite-rule-enable-https.txt" matchType="IsFile" />
            </conditions>
            <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
        </rule>

. , .

, , "rewrite-rule-enable-https.txt".

0