The code below builds a url in this form.
http://mysite.com/browse/department/?pid=1 and here is the rewrite cond and rule
RewriteCond %{QUERY_STRING} ^pid=([0-9]+) RewriteRule browse/(.*)/$ show_products.php?department=$1&pid=%1 What i would like is to have 2 extra parameters the first is order buy and the second which isn't necessarily in the url which would be filter so the url would be like this
http://mysite.com/browse/department/?pid=1&order_by=a_z or with parameter filter
http://mysite.com/browse/department/?pid=1&order_by=a_z&filter=1 How do I have my rewrite condition and my rewrite rule