Skip to content

Instantly share code, notes, and snippets.

@cloudflying
Created August 26, 2012 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cloudflying/3483685 to your computer and use it in GitHub Desktop.
Save cloudflying/3483685 to your computer and use it in GitHub Desktop.
Web.config url rewrite
<rewrite>
<rules>
<rule name="rw_page_address" stopProcessing="true">
<match url="^url/value/([_0-9a-z-]+)"/>
<action type="Rewrite" url="aPage.aspx?msg={R:1}&amp;value=2"/>
</rule>
</rules>
</rewrite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment