I'm attempting to redirect all URLs with parameters to the main page of another domain.
Existing URL Example:
[
olddomain.tld...]
Needs to Redirect to:
[
newdomain.tld...]
This is the code I'm using but it isn't working. The domain changes in the browser but the parameters remain.
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /support/demo\.php\?id=([^&]+)&series=([^&]+)\ HTTP/
RewriteRule ^(.*)$ http://www.newdomain.tld/ [R=301,L]