使用 .htaccess 阻止子域垃圾邮件引用

blocking subdomains spam referrals using .htaccess

我想阻止垃圾邮件机器人的子域和主域的引荐,因此我使用以下代码。

RewriteEngine on 
RewriteCond %{HTTP_REFERER} ^http://([^.]+\.)*semalt\.com [OR,NC]
RewriteCond %{HTTP_REFERER} ^http://([^.]+\.)*buttons-for-website\.com [OR,NC]
RewriteCond %{HTTP_REFERER} ^http://([^.]+\.)*simple-share-buttons\.com [NC]
RewriteRule .* - [F]

我在 awardspace.com 上托管了我的网站。

问题是我仍然看到来自上述网站子域的推荐。

使用以下方法进一步放松您的正则表达式:

RewriteEngine on 

RewriteCond %{HTTP_REFERER} (buttons-for-website|semalt|simple-share-buttons)\. [NC]
RewriteRule ^ - [F]