php - IIS7 rewrite regular expression does not identifying + sign -


i using php iis7. in web.config file have made rewrite rule. pattern matching

^product/([0-9a-za-z\+\-]+)$ 

now problem not work when there + sign in url example not work for

http://mywebsite/product/abc+def+ghi 

i need work above.

but work

http://mywebsite/product/abc def ghi 

so guess identifying space not +

any appreciated.

thanks

i found answer. sharing in case needs.

just put

<system.webserver> <security>     <requestfiltering allowdoubleescaping="true"/> </security> 

in web.config file.

and done


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -