Prevent Hotlinking and Bandwidth Theft
Forum rules
Everything in this forum is for everybody
But support only for Donators!
Everything in this forum is for everybody
But support only for Donators!
- Terr0r
- BBCoder V
- Posts: 339
- Joined: 04 May 2011, 00:47
- BBCodes: 100
- Location: The Netherlands
- Contact:
Prevent Hotlinking and Bandwidth Theft
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
and I must change that to this
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]
Code: Select all
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+.)?phpbbpoints.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*.(php)$ ../stop.png [L]
Last edited by Terr0r on 29 Aug 2011, 21:32, edited 1 time in total.
If you can't fix it with ducktape you ain't using enough
For my MODS and BBCodes or other things that I have made take a look here
For my MODS and BBCodes or other things that I have made take a look here
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Prevent Hotlinking and Bandwidth Theft
Yes, that looks like the right edit to do.
Board rules! No PM support
- Terr0r
- BBCoder V
- Posts: 339
- Joined: 04 May 2011, 00:47
- BBCodes: 100
- Location: The Netherlands
- Contact:
Prevent Hotlinking and Bandwidth Theft
I have do that and that is working thanks Stoker agian
If you can't fix it with ducktape you ain't using enough
For my MODS and BBCodes or other things that I have made take a look here
For my MODS and BBCodes or other things that I have made take a look here