Created
August 23, 2019 23:24
-
-
Save shanselman/2f2cbf19c196c46021ba3f09ca5c1ae8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <rewrite> | |
| <rewriteMaps configSource="rewritemaps.config" /> | |
| <rules> | |
| <rule name="Redirect Rule" stopProcessing="true"> | |
| <match url=".*" ignoreCase="false" /> | |
| <conditions> | |
| <add input="{StaticRedirects:{URL}}" pattern="(.+)" /> | |
| </conditions> | |
| <action type="Redirect" url="{C:1}" appendQueryString="false" redirectType="Permanent" /> | |
| </rule> | |
| </rules> | |
| </rewrite> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment