Your Webhosting Questions
Answered by the Webhosting Experts
Tags
...
...

How to Prevent Hotlinking in Lighttpd ?

HotLinking is something using which you can display an image, which you have seen on someone else’s site, on your site. Bandwidth in this case will depend on the amount of data downloaded from the site to the user’s end. So when you will display your site, you are using that site’s bandwidth and not yours.

If lighttpd is installed on your server and if you want to stop hotlinking on your server.
Open lighttpd.conf file:

[root@server ~]# vi lighttpd.conf

Add following code in the file
================================================== =============
$HTTP[“referer”] =~ “.*BADDOMIN\.com.*” {
url.access-deny = ( “” )
# url.access-deny = ( “jpg”, “png”, “js“, “jpeg”, “gif” )
}
================================================== =============

Restart lighttpd on the server.

[root@server ~]# service lighttpd restart

HotLinking is now disabled on your server .This should prevent bandwidth theft issues

which are related to hotlinking.

Need More Personalized Help?

If you have any further issues, questions, or would like some assistance checking on this or anything else, please reach out to us from your my.hivelocity.net account and provide your server credentials within the encrypted field for the best possible security and support.

If you are unable to reach your my.hivelocity.net account or if you are on the go, please reach out from your valid my.hivelocity.net account email to us here at: [email protected]. We are also available to you through our phone and live chat system 24/7/365.

Tags +
...