Home » Categories » Managed WordPress » Advanced

Disable external WordPress comment requests

You can disable external comment requests for WordPress. The following steps block requests to the wp-comments-post.php file that come from outside your WordPress site, which can help prevent comment SPAM.

  1. You should always backup your site before making any changes.
  2. Connect to your hosting with FTP
  3. Locate the .htaccess file
  4. Edit the file and add the following code:
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} POST
    RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
    RewriteCond %{HTTP_REFERER} !.*yourdomain.com.* [OR]
    RewriteCond %{HTTP_USER_AGENT} ^$
    RewriteRule (.*) http://%{REMOTE_ADDR}/$ [R=301,L]
  5. Save and upload the updated file

Now it will be more difficult for comment SPAM bots to post on your WordPress pages and posts.

0 (0)
Article Rating (No Votes)
Rate this article
  • Icon PDFExport to PDF
Related Articles
Disable trackbacks and pingbacks in WordPress
Added on Tue, Nov 17, 2020
Remove WordPress comments in the database
Added on Tue, Nov 17, 2020
Change PHP settings for my hosting account
Added on Tue, Nov 17, 2020
Create a child theme for WordPress
Added on Tue, Nov 17, 2020
Evaluate site performance with PageSpeed Insights
Added on Tue, Nov 17, 2020