I recently saw a extreme boost in the bandwidth usage of my blog but the visitor count has not boosted.i am suspecting that a visitor of my blog has linked some image files from my server to his site which has caused this.how can i prevent my bandwidth from being stolen
If your hosting supports .htaccess (if it is Linux it probably does), put this in your .htaccess file: RewriteEngine On RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mydomain\.com/ [NC] RewriteCond %{HTTP_REFERER} !^$ RewriteRule .*\.(jpg|gif|bmp|png)$ http://www.another-site-of-yours-that-is-not-protected.com/images/bitemyshinymetalass.gif [L] Code (markup): Replacing mydomain.com with your domain and the image URL specified with something that the perpetrator won't want displayed on their site.
Yes ,its a linux cpanel 11 hosting.i am using worpress and i upload all images to default upload folder.i will try your come and see if it works