I want to rewrite URLs while still allowing multiple optional Query Strings.
For example, I know I can do this:
RewriteCond %{QUERY_STRING} ^page=(\d+)$
RewriteRule ^products/?$ products.php
Is it possible to allow more query strings to be passed so I could use something like products/?page=1&foo=bar
and so on?
Thanks.
Edit: What I wanted was just the [QSA] at the end of the rule. Works like I expected.