Hello
I use this code in httpd.conf to block access to xmlrpc.php file that kills many wordpress based websites every day ;-)
Is it possible to add a rewrite rule to block access to some files like xmlrpc.php?
If you use wordpress and security plugins please share your working codes that work.
Thanks a lot
I use this code in httpd.conf to block access to xmlrpc.php file that kills many wordpress based websites every day ;-)
Code:
<FilesMatch "^(xmlrpc\.php|wp-trackback\.php)">
Order Deny,Allow
Deny from all
</FilesMatch>
If you use wordpress and security plugins please share your working codes that work.
Thanks a lot