asp.net - URL rewrite rule fails match when adding + -
the following rewrite rule works url:
https://www.example.com/muziek/liedjes-start+meeting/modern
but url http error 404.0 - not found
https://www.example.com/muziek/liedjes-start+meeting/rhythm+and+blues
<rule name="song overview occasion + genre"> <match url="^(muziek/liedjes|music/songs)-([a-za-z-+]+)/([a-za-z-+]+)$"/> <action type="rewrite" url="songs.aspx?category={r:2}&genre={r:3}" appendquerystring="true"/> </rule>
so fot second url rewrite not work...why not?
Comments
Post a Comment