Q. My site hosts lots of good images and other site hot links to my images from their own site. Hot linking is eating lots of my bandwidth. How do I stop lechers or prevent hotlinking under Apache web server?
A. This is problem you may encounter, particularly if your site hosts unique images. However solution is quite simple ban image hot linking using Apache mod_rewrite to check the referral information the browser provides.
How do I prevent Apache hot linking of images / media?
There are many ways to block hot linking of images.
You can add any one of the following code to .htaccess file or to your own httpd.conf file to prevent.
Make sure Apache mod_rewrite is enabled.
Solution # 1 : Prevent "hot linking" of images
Open httpd.conf or .htaccess file using vi text editor
# vi httpd.conf
Append following config directive:
SetEnvIfNoCase Referer "^http://www\.cyberciti\.biz/" banimages=1 SetEnvIfNoCase Referer "^http://cyberciti\.biz/" banimages=1 SetEnvIfNoCase Referer "^$" banimages=1 <FilesMatch "\.(gif|png|jpe?g)$"> Order Allow,Deny Allow from env=banimages=1 </FilesMatch>
Or you can use following simple code:
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cyberciti.biz/.*$ [NC]
RewriteRule ^.*\.(bmp|tif|gif|jpg|jpeg|jpe|png)$ - [F] Solution # 2 : Prevent "hot linking" of images and redirect to new image
This method stop hotlinking and displays alternate image to endusers
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?cyberciti\.biz/.*$ [NC]
RewriteRule .*\.(gif|jpe?g|png)$ http://www.cyberciti.biz/noop.jpg [R,NC,L]Unless the image is displayed on cyberciti.biz, browers would see the image noop.jpg. Replace domain cyberciti.biz and upload noop.jpg to webroot.
If you made changes to httpd.conf file; restart Apache:
# /etc/init.d/httpd restart
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop














{ 5 comments… read them below or add one }
Hi,
I have configured the many virual hosts. If many userser login or hit this hosts then some session files with there login number like (sess_76hy679jb a very big number) is created in /tmp directory.
This files are deleted automaticaly. But currentaly these files are not deleted & they give session error. Where I change the default limit of this session files.
Give me solution for this.
Any one help, I has tried this below code with my local site. My local server is using Appache on Windows
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://localhost/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(gif|jpg|jpeg|bmp|png|js|css)$ – [F]
The result seen to be error code 500 for any access
can u please guide me on how to read the status given ?
This doesn’t seem to work with firefox. I’ve tried the example code but changed it for use with FLV/MP4.
Works fine with IE en Chrome, but not with firefox…anybody knows why??
Cheers
Doesn’t work. Also, you didn’t specify WHERE in the httpd.conf this should go. Fail.