Created
January 7, 2012 20:13
-
-
Save tugberkugurlu/1575882 to your computer and use it in GitHub Desktop.
LowerCaseForce
This file contains 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
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="lowerCaseForce" stopProcessing="true"> | |
<match url="[A-Z]" ignoreCase="false" /> | |
<action type="Redirect" url="{ToLower:{URL}}" /> | |
</rule> | |
</rules> | |
</rewrite> | |
</system.webServer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment