Thread
:
How do I block ONE domain in my htaccess?
View Single Post
2005-01-22, 10:44 AM
#
4
cd34
a.k.a. Sparky
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
RewriteEngine on
RewriteCond %{HTTP_REFERER} http://(www\.)?besthardcore.net(/)?.*$ [NC]
RewriteRule .* - [F]
This will 403 ANY traffic from besthardcore.net.
You can define:
ErrorDocument 403
http://www.domain.com
and send them on their merry way
__________________
SnapReplay.com
a different way to share photos - iPhone & Android
cd34
View Public Profile
Visit cd34's homepage!
Find More Posts by cd34