Hello, I want to add a rule that will be valid on existing and future websites without using a WordPress plugin. The purpose of this rule is to block requests to the xmlrpc.php file.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^/xmlrpc\.php$ - [F,L]
</IfModule>
I saved this code...