Skip to main content
Articles

Killing Trackbacks and Pingbacks in WordPress with HTACCESS

FilesMatchprotect-wordpress_original is used to target multiple files using Regular expressions with .htaccess files on Apache. Huh?

This is a note to myself. If you find it useful, cool. Add this to the default WordPress .htaccess file. Note, as an unfortunate side effect, this also kills WordPress’ App for the iPhone by Automatic’s ability to post to WordPress though mobile. However, whitelisting your IP (Static) whilst connected to a router by uncommenting and using the is a janky work around. But I guess if you HATE Trackbacks and Pingbacks, this is the killer.


<FilesMatch "^(xmlrpc\.php|wp-trackback\.php)">
Order Deny,Allow
Deny from all
#Allow from x.x.x.
<FilesMatch>

Learn more about XML-RPC Support in WordPress and why everything about this post is usually a bad idea.