Forum Moderators: phranque
RewriteEngine on
RewriteCond %{HTTP_REFERER} ^deadflesh$ [NC,OR]
RewriteRule ^.*$ http://en.wikipedia.org/wiki/Bandwidth_theft [R,L]
Any ideas? Prompt reply would be extra helpful due to the rate that the leechers are sucking my bandwidth with illegitimate traffic.
How about a nice, simple "Access Denied"?
ErrorDocument 403 /your_custom_403_page.html
RewriteEngine on
RewriteCond %{HTTP_REFERER} hotlinker_referrer_URL [NC]
RewriteRule !^your_custom_403_page\.html$ - [F]
Jim
RewriteEngine on
RewriteCond %{HTTP_REFERER} .
RewriteCond %{HTTP_REFERER}!^http://(www\.)?mysite\.org [NC]
RewriteCond %{HTTP_REFERER}!^http://(www\.)?example.com\.com [NC]
RewriteCond %{HTTP_REFERER}!^http://(www\.)?anothersite\.com [NC]
RewriteCond %{HTTP_REFERER}!^http://(www\.)?andanother.name [NC]
RewriteRule \.(avi¦wmv¦mov)$ http://mirror.mysite.org/thieves/bandwidththeft.html [R,NC]
This doesn't work as intended, however. It blocks requests from everywhere.
[edited by: jdMorgan at 10:48 pm (utc) on July 31, 2005]
[edit reason] Removed specifics per TOS [/edit]