I've been using the UrlRewrite IIS plugin for about a month on our production site.

I created a single redirect rule using the supplied template/wizard, the resulting config enrty is as follows:

<rewrite>
    <rules>
        <rule name="CanonicalHostNameRule1" enabled="true">
            <match url="(.*)" />
            <conditions>
                <add input="{HTTP_HOST}" pattern="^www\.mycompany\.com$" negate="true" />
            </conditions>
            <action type="Redirect" url="http://www.mycompany.com/{R:1}" />
        </rule>
    </rules>
</rewrite>

It's been running fine until this morning, when the site started erroring with "too many redirects". As far as I know, nothing in the configuration or infrastructure changed.

I disabled the rule, and the site became functional again (though clearly without any redirecting).

I then re-enabled the rule, and now all is running as expected. I didn't make any changes to the rule other than to temporarily disable it.

Any ideas? Is the plugin buggy?

link|improve this question

What framework # are you running on? I know there were some particularly unpleasant errors with 1.1 which required an IIS restart... – dooburt Nov 8 '10 at 12:57
feedback

1 Answer

I'd recommend setting this up:

http://learn.iis.net/page.aspx/467/using-failed-request-tracing-to-trace-rewrite-rules/

This may help you track down the problem if you start getting the "too many directs" error again.

link|improve this answer
Thanks Chris, I'll certainly do this. – sandy Nov 8 '10 at 14:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.