Hi,
Here's my rule:
RewriteRule ^catalog/([^/]+)/([0-9]+)/([0-9]+)/([^/]+)$ products.php?category=$1&page=$2&per_page=$3&search=$4 [QSA]
For some reason "category" is not properly passed to the PHP script if it contains "&". For instance: mysite/catalog/boots_&_shoes/1/1/
When I print out an array of what PHP receives, I see the following:
Array ( [category] => boots_ [_shoes] => [page] => 1 [per_page] => 1 )
What I am doing wrong? :)
Thanks!