Skip to content

Instantly share code, notes, and snippets.

@mikesprague
Last active December 26, 2015 22:39
Show Gist options
  • Save mikesprague/7225173 to your computer and use it in GitHub Desktop.
Save mikesprague/7225173 to your computer and use it in GitHub Desktop.
Tuckey URL Rewrite: Strip .html
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