Skip to content

Instantly share code, notes, and snippets.

@rchacon
Created August 24, 2014 06:13
Show Gist options
  • Save rchacon/0cbaaf11bfcf9a3c677e to your computer and use it in GitHub Desktop.
Save rchacon/0cbaaf11bfcf9a3c677e to your computer and use it in GitHub Desktop.
IIS Rewrite Rule to redirect /route-name.aspx to /route-name
<rule name="redirect-aspx" enabled="true" stopProcessing="true">
<match url="(.*).aspx$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Redirect" url="http://library.morrisville.edu/{R:1}" appendQueryString="true" />
</rule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment