I have the following rule in my htaccess file:
RewriteRule ^product/(.*)/(.*)/([0-9]+)$ product_page.php?prod=$1&code=$3&lang=$2 [QSA]
when I have / slash / within my product name -
http://www.mySite/product/namePart1/namePart2/_lang2/722 works
but
http://www.mySite/product/namePart1%2FnamePart2/_lang2/722 does not work
any hint why? I thought that translating / to %2F [using rawurlencode] will solve a problem. but it creates the problem!
Thanks,
Atara