I have a list of urls to redirect. A lot of them include query parameters.
So, for example, I need to redirect
index.php?id=627&type=98
to
/about-us/contact/
I thought that the following would work:
RewriteCond %{QUERY_STRING} "^id=627&type=98$" [NC]
RewriteRule "^index\.php" "/about-us/contact/?" [NC,R,L]
But it is not working. What is wrong with the Rewrite Rule?