I just noticed this as well. I enabled the option and went straight to my contact form to check and there was nothing there even though the alert I got specifically mentioned the contact form. Now when visiting the Akisment settings I see the same info relating to comments forms – and there is now a privacy notice on my comment forms, but there’s nothing on my contact forms.
So which is best?
<IfModule mod_rewrite.c>
RewriteCond %{HTTP_REFERER} site\.ru [NC]
RewriteRule ^(.*)$ – [L,R=403]
</IfModule>
or
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_REFERER} site\.ru [NC]
RewriteRule ^(.*)$ – [F]
</IfModule>
what’s the benefit of adding:
RewriteEngine On
I’m getting pages and pages of requests from site.ru and I’m fed up of trawling through them and having to delete them. so would like to add something to my htaccess file this week to just block site.ru completely, but I’m not expert on htacces code.