Page 3 of 3

Prevent Hotlinking and Bandwidth Theft

Posted: 25 Aug 2011, 22:04
by Stoker
np ;)

Prevent Hotlinking and Bandwidth Theft

Posted: 29 Aug 2011, 20:33
by Terr0r
I have a official domain name for my forum but I have now a problem whit this snippet

I hade this http://phpbb.grandtheftcrime.nl/index.php and I have now this http://www.phpbbpoints.com
I have now a domain name for my subdomain name

and now see I everywhere the stop hotlinking file

I have now this

Code: Select all

    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^http://(.+.)?grandtheftcrime.nl/ [NC]
    RewriteCond %{HTTP_REFERER} !^$
    RewriteRule .*.(php)$ ../stop.png [L]
and I must change that to this

Code: Select all

    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^http://(.+.)?phpbbpoints.com/ [NC]
    RewriteCond %{HTTP_REFERER} !^$
    RewriteRule .*.(php)$ ../stop.png [L]

Prevent Hotlinking and Bandwidth Theft

Posted: 29 Aug 2011, 20:36
by Stoker
Yes, that looks like the right edit to do.

Prevent Hotlinking and Bandwidth Theft

Posted: 29 Aug 2011, 20:44
by Terr0r
I have do that and that is working :thumb: thanks Stoker agian