通过使用.htaccess减少WordPress博客上的垃圾邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过使用.htaccess减少WordPress博客上的垃圾邮件相关的知识,希望对你有一定的参考价值。

Reduce spam on WP installations (comment spam); this snippet does not look for https referers.
  1. # BEGIN die spam die
  2.  
  3. <IfModule mod_rewrite.c>
  4. RewriteEngine On
  5. RewriteCond %{REQUEST_METHOD} POST
  6. RewriteCond %{REQUEST_URI} .wp-comments-post.php*
  7. RewriteCond %{HTTP_REFERER} !.*yourdomainname.* [OR]
  8. RewriteCond %{HTTP_USER_AGENT} ^$
  9. RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
  10. </IfModule>
  11.  
  12. # END die spam die

以上是关于通过使用.htaccess减少WordPress博客上的垃圾邮件的主要内容,如果未能解决你的问题,请参考以下文章

修改 Wordpress 中默认生成的友好 URL(通过 .htaccess)

通过 Wordpress Rewrite 或 .htaccess 重写 URL

.htaccess 用 WordPress 插件重写

通过.htaccess利用WordPress中的浏览器缓存

子域“m”。与 WordPress 和。 htaccess(在 htaccess 中的重写规则冲突。)

apache_conf 通过启用gzip压缩来提高页面速度。在WordPress中添加到.htaccess