Created
June 14, 2018 16:03
-
-
Save amirkhan81/ed239d0fc91637d25885bcfefcb481e3 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
<!-- | |
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