We use IIS URL Re-write module, like this
<rule name="RewriteSearch" stopProcessing="true">
<match url="^Search/([_0-9a-z+-]+)" />
<action type="Rewrite" url="CommonPages/Search.aspx?term={R:1}" />
</rule>
http://www.tickettail.com/Search/NormalText123 Works fine
But...
http://www.tickettail.com/Search/ราคัดมาใ
(This is Thai) Will not. How can I modify the match to allow foreign text?
Thanks