I have several links that look like this:
product_info.php?manufacturers_id=65&products_id=112302
product_info.php?manufacturers_id=645&products_id=101356
product_info.php?manufacturers_id=65&products_id=112301
product_info.php?manufacturers_id=641&products_id=123785
and I need to rewrite replacing
products_info.php with default.php
and remove &products_id=#*$!#*$!
A correct link would be
default.php?manufacturers_id=471
I have tried a rewrite rule as follows
RewriteRule ^default.php?manufacturers_id=(.*)$ product_info.php?manufacturers_id=$2&%{QUERY_STRING}
but no luck