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