Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amirkhan81/ed239d0fc91637d25885bcfefcb481e3 to your computer and use it in GitHub Desktop.
Save amirkhan81/ed239d0fc91637d25885bcfefcb481e3 to your computer and use it in GitHub Desktop.
<!--
If you wish to use IIS rewrite rules, see the documentation here:
https://our.umbraco.org/documentation/Reference/Routing/IISRewriteRules
-->
<rules></rules>
<!-- <rules>
<rule name="Remove trailing slash" stopProcessing="true">
<match url="(.*)/$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}" />
</rule>
<rule name="QuoteRewrite">
<match url="^quotes/([a-zA-Z-+']+)" />
<action type="Rewrite" url="quotes/?month={R:1}" />
</rule>
</rules> -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment