Hi, I am trying to redirect my pages using URL:
RewriteRule ^(.*)/content/(.*)/?(.*)\.html$ browse.php?s=$1&c=$2&l=$3 [NC,L]
For 2 parameters it works fine but when I passes 3 parameters it merges the 2 and third.
Correct output is as follow (2) parameters:
Array ( [s] => wallpapers [c] => Global_Celebrities [l] => Nicole1);
Merged messed output is here (3) parameters:
Array ( [s] => wallpapers [c] => Global_Celebrities/Kate1 [l] =>);
Thanks in advance.