View Single Post
Old 2006-04-29, 06:05 AM   #10
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^http://(.*\.)?fatfred.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.*\.)?fode-me [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://(.*\.)?5isex.com [NC]
RewriteRule .* http://www.google.com [R,L]

you would have blocked http://fatfred.com from linking to you, but not http://www.fatfred.com.

you can also do something like:

RewriteEngine on
RewriteCond %{HTTP_REFERER} fatfred.com [NC,OR]
RewriteCond %{HTTP_REFERER} fode-me [NC,OR]
RewriteCond %{HTTP_REFERER} 5isex.com [NC]
RewriteRule .* http://www.google.com [R,L]

which will block www.123fode-me234.com
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote