Use the following rewrite rule to block the referrer from single domain/web site.
RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} test\.com [NC]
RewriteRule .* – [F]
Similarly you can block the referrer from the multiple sites by using the following rewrite rule in the .htaccess file.
RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} test\.com [NC,OR]
RewriteCond %{HTTP_REFERER} test123\.com
RewriteRule .* – [F]