Skip to content

Instantly share code, notes, and snippets.

@rhysgodfrey
Created February 2, 2016 13:16
Show Gist options
  • Save rhysgodfrey/520978e05a53ce3862a0 to your computer and use it in GitHub Desktop.
Save rhysgodfrey/520978e05a53ce3862a0 to your computer and use it in GitHub Desktop.
URL Rewrite rule for rewriting all but the health check
<rewrite>
<rules>
<rule name="RedirectToHolding" enabled="true" stopProcessing="true">
<match url="^(?!health-check\.aspx).*$" />
<action type="Rewrite" url="holding.htm" />
</rule>
</rules>
</rewrite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment