Last active
December 26, 2015 22:39
-
-
Save mikesprague/7225173 to your computer and use it in GitHub Desktop.
Tuckey URL Rewrite: Strip .html
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
Tuckey URL Rewrite - Remove .html Extensions | |
<rule> | |
<note>Example: http://hostname/sample/loginhelp?cid=2 is masked from http://hostname/sample/loginhelp.html?cid=2</note> | |
<from>^(.*)?(.*)$</from> | |
<to>$1.html?$2</to> | |
</rule> | |
<outbound-rule> | |
<note>Example: http://hostname/sample/loginhelp.html?cid=2 is redirected to http://hostname/sample/loginhelp?cid=2</note> | |
<from>^(.*)(.html)(.*)$</from> | |
<to type="redirect">$1$2</to> | |
</outbound-rule> | |
<rule match-type="wildcard"> | |
<from>*?*</from> | |
<to>$1.html?$2</to> | |
</rule> | |
<rule match-type="wildcard"> | |
<from>**</from> | |
<to>$1.html</to> | |
</rule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment