为了减少 wordpress 评论中的垃圾邮件,我使用以下代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*domainname.com* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
</IfModule>
我的问题是:我想减少“注册”中的垃圾邮件。像这样的网址 http://www.domain.com/signup
如何更改此行:
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
成为注册???
请帮帮我,谢谢。