How can I redirect the path /blog/xmlrpc.php?rsd to /blog/ in my .htaccess?
I tried the following below but it doesn't work:
Redirect 301 "/blog/xmlrpc.php?rsd" "/blog/"
and this doesn't work either:
RewriteEngine on RewriteRule ^/blog/xmlrpc.php.* /blog/ [R=301,L]
The end result is always:
https://www.example.com/blog/?rsd
How can I get this redirect to work so it doesn't end with '?rsd' or anything else.