Forum Moderators: phranque
# Deny Access to site from anonymous proxies based on Referer.
<IfModule mod_rewrite.c>
RewriteEngine On
# Check the referer for sitename.
RewriteCond %{HTTP_REFERER} ^http://Anonymouse\.org [NC]
# Redirect client to google
RewriteRule (.*) http://www.google.com [L]
</IfModule>