WPArenaWPArena is a premium online resource site of WordPress and is focused on providing excellent WordPress Tutorials, Guides, Tips, and Collections.

How To Redirect The Spammers Where You Want To?

WordPress is my favorite platform for blogging as well spambots love to target WordPress’ comment script directly by using automatic commenting plugins. The best way to bounce them back or on another page, wherever you want to, is simply by editing your .htaccess file. Here is the script to add to your WordPress blogs (or […]

0
196
How To Redirect The Spammers Where You Want To?

WordPress is my favorite platform for blogging as well spambots love to target WordPress' comment script directly by using automatic commenting plugins. The best way to bounce them back or on another page, wherever you want to, is simply by editing your .htaccess file.

Here is the script to add to your WordPress blogs (or into your site's) .htaccess file:

# block comment spam by denying access to no-referrer requests
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*wparena.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule ^(.*)$ ^http://the-site-where-you-want-to-send-spammers.com/$ [R=301,L]

You need to  change the following lines according to your specific setup:

.wp-comments-post\.php*  = Default for WordPress User

If you are not using WordPress,  add the file name which you are using for comments.

!.*wparena.com.* = Change it with your domain name

^http://the-site-where-you-want-to-send-spammers.com/$

Enter your least favorite website address here. If you want to bounce them back where they are coming from, then simply replace the above line with this:

RewriteRule ^(.*)$ ^http://%{REMOTE_ADDR}/$ [R=301,L]

After setting up these lines of codes in your .htaccess file you immediately eliminate a large portion of blog spam.

N
WRITTEN BY

Noor Mustafa Raza

I am a WordPress Developer and Designer, author @WPArena. I am providing Free WordPress consultation and can help you to install WordPress in a secure way to small businesses and bloggers.

Responses (0 )