I currently have the following entry in my .htaccess 'redirect everything except for /wp-admin/* & /wp-login.php':
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/wp-admin/*
RewriteCond %{REQUEST_URI} !^/wp-login.php
RewriteRule .* [
newdomain.com...] [R=301,L]
I would like to be able to exclude the following URL as well but can't figure out what to add to .htaccess:
/?wpmlmethod=newsletter&id=5&subscriber_id=1&authkey=53fde96fcc4b4ce72d7739202324cd49
along with variations of it:
/?wpmlmethod=newsletter&id=X&subscriber_id=X&authkey=X
I'd really appreciate some assistance with this.