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}&amp;genre={r:3}" appendquerystring="true"/>   </rule> 

so fot second url rewrite not work...why not?


Comments

Popular posts from this blog

python - argument must be rect style object - Pygame -

webrtc - Which ICE candidate am I using and why? -

c# - Better 64-bit byte array hash -