The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Hotlink Protection Tutorial (Apache Server - .htaccess files)
What is hotlinking and bandwidth theft? Bandwidth theft or "hotlinking" is direct linking to a web site's files (images, video, etc.). An example would be using an <img> tag to display a JPEG image you found on someone else's web page so it will appear on your own site, eBay auction listing, weblog, forum message post, etc. Bandwidth refers to the amount of data transferred from a web site to a user's computer. When you view a web page, you are using that site's bandwidth to display the files. Since web hosts charge based on the amount of data transferred, bandwidth is an issue. If a site is over its monthly bandwidth, it's billed for the extra data or taken offline. A simple analogy for bandwidth theft: Imagine a random stranger plugging into your electrical outlets, using your electricity without your consent, and you paying for it. How Do I know I am hotlinking? This is how you might display an image graphic file in the HTML on your own web page: HTML Code:
<img src="image.jpg" height="350" width="200">
HTML Code:
<img src="http://notmysite.com/image.jpg" height="350" width="200">
Why should I stop hotlinking? Hotlinking can have a lot of undesirable consequences. One is the so-called "switcheroo". If you've linked to an image on someone's server, what's to prevent them from changing the image you linked to? This can have humorous results. Since most sites, forums, etc. have strict policies about offensive images, it wouldn't take much for an aggravated webmaster you've been stealing bandwidth from to shut you down completely with an unwanted "switcheroo". Displaying an image or file that doesn't belong to could be a violation of copyright, making you open to litigation. The owner of the file could utilize DMCA law to have your site shut down and your information given for use in legal proceedings. How can I test to see if my image can be hotlinked? Use our URL hotlink checker below to check the hotlinking protection (such as an htaccess file) on your web site. Enter the complete URL below (ex: http://mysite.com/image.jpg) to see if your image can be loaded and hotlinked by an outside server. Click to go to the Resource & Test Page ****************************************** ****************************************** ****************************************** Following text may not be an ultra professional experience but i've been using these techniques for 2 years and they are working great for me. I've been running two dedicated servers and i've full control over them (my .htaccess file lines included in my httpd.conf file). If your hosting is shared and got some restrictions to use .htaccess files on your account, you should contact your hosting company first to enable them. Notice: .htaccess files can only be used by Apache web servers and they will not work on a windows system. Hotlink Protection Enabled .htaccess File Tutorial -Create a new TXT file named *'sample.htaccess' and open it with your text editor (NotePad). *Windows users won't be able to create it as '.htaccess' so you have to rename 'sample.htaccess' to '.htaccess' after it's been uploaded to your server. -Copy and paste the following lines to 'sample.htaccess' file: Quote:
-Upload 'sample.htaccess' file to your web server's root and rename it to '.htaccess'. Read the following text to figure out how to customize your own .htaccess file. RewriteCond %{HTTP_REFERER} !^$ = Allow direct requests (ie. entering the url to an image in your browser). People can't publish your image files at their own web pages but they still can view them by entering their url in the browser window. These images can also be viewed (shared) by clicking on their urls in Instant Messenger windows. [NC] = "No Case", meaning match the url regardless of being in upper or lower case letters. [R] = Redirect *(jpg|jpeg|gif|png|bmp|swf) = Files to block I used to redirect blocked files to a custom .jpe image file. If you prefer this option, you should use the following .htaccess file: Quote:
My .htaccess file: Quote:
First piece of lines got RewriteCond %{HTTP_REFERER} !^$ line as i don't want people to be able to access those kind of files directly. (The protection for the image files doesn't have that line) If you don't want a redirection for (mp3|mpeg|mpg|ram|rm|wma|wav|asx|wmv|avi|mov|zip|r ar|exe), you can use replace that line with the following display your Error Code 404 page: Quote:
.htaccess files effect the folder it's in and all of the subfolders. If you want to exclude a subfolder from the hotlink protection, create another .htaccess file with the lines below and upload it to that directory: Quote:
Feel free to reply this thread if i made some mistakes This tutorial is written by NeutralizeR @ MsXLabs Organization |
#22
|
|||
|
|||
Sorry, my mistake: it is post #5. I'm sleepy at the moment, hope i understood you correct:
Code:
RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(.+\.)?domain.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domainguest1.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domainguest1.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domainguest2.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domainguest2.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domainguest3.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.domainguest3.com$ [NC] RewriteRule .*\.(jpg|jpeg|gif|png|bmp|swf)$ http://www.domain.com/nohotlinking.jpe [R,NC] |
#23
|
|||
|
|||
And how do you deal with attachment.php?
This is what they are stealing from me. htaccess does not protect that |
#24
|
|||
|
|||
Quote:
|
#25
|
|||
|
|||
Guest are allowed to see attachments. But I found a solution that works perfect for me. Attachment.php displays on my site only.
|
#26
|
|||
|
|||
How would i make it so that a certain file is allowed to be hotlinked, like affiliates for example how would i allow people to hotlink my link button? and then the rest of the .gifs wont be allowed to be hotlinked
|
#27
|
||||
|
||||
is there something we can use for windows server i know this method don't work that way
|
#28
|
||||
|
||||
I added this code to my existing htaccess code obviously replacing the urls with my own and now none of my images are appearing on the forum. No photopost, forum icons ect.. Do you know what might be causing this? Thanks
RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://www.msxlabs.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.msxlabs.org$ [NC] RewriteRule .*\.(mp3|mpeg|mpg|ram|rm|wma|wav|asx|wmv|avi|mov|z ip|rar|exe)$ http://www.msxlabs.org/forum/ [R,NC] RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://www.msxlabs.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.msxlabs.org$ [NC] RewriteRule .*\.(jpg|jpeg|gif|png|bmp|swf)$ http://www.msxlabs.org/forum/ [R,NC] |
#29
|
|||
|
|||
Use this one below:
Code:
RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com$ [NC] RewriteCond %{HTTP_REFERER} !^$ RewriteRule .*\.(jpg|jpeg|gif|png|bmp|swf|mp3|mpeg|mpg|ram|rm|wma|wav|asx|wmv|avi|mov|zip|rar|exe)$ http://www.yourdomain.com/forum/ [R,NC] (a page, a picture with .jpe extension) |
#30
|
|||
|
|||
Great tutorial. However my redirect isn't working. Hotlinking is being blocked but it doesn't redirect to our home page.
I use: RewriteEngine On RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://www.animeonline.net/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.animeonline.net$ [NC] RewriteRule .*\.(jpg|jpeg|gif|png|bmp|swf)$ http://www.animeonline.net/ [R,NC] You can see a test page at www.myotherdomain.com/test.htm. There is a broken image that should redirect to AnimeOnline's home page. Correct? Thank you. |
#31
|
|||
|
|||
Hi,
Image files are displayed as they are broken with hotlink protection enabled, they can't redirect to another page. I use one line for any file type to use less server resource: jpg|jpeg|gif|png|bmp|swf|mp3|mpeg|mpg|ram|rm|wma|w av|asx|wmv|avi|mov|zip|rar|exe If they link a zip file pointing to your domain, it redirects to your homepage if somebody clicks on it. This method doesn't work for image files. |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|