I am working with eCommerce website .where i have product detail page .In PHP , anchor Tag look like
<a href="Product-Detail.php?<?php echo $rowProductsFirstWithThreeLimit['MainCategoryName'] ;?>&<?php echo $rowProductsFirstWithThreeLimit['SubCategoryName'] ;?>&ProductId=<?php echo $rowProductsFirstWithThreeLimit['Id'];?>" title="<?php echo $rowProductsFirstWithThreeLimit['MainCategoryName'] ;?>">Product name</a>
in address bar i want to Convert Following URL Product-Detail.php?Kurtis&Cotton&ProductId=47
To Product-Detail.php/Kurtis/Cotton/Title
Please Tell Me how can i Rewrite Url in Following Style Thanks In Advance .