Protect your bandwith with .htaccess
protect your bandwidth with .htaccess
Are you fed up the message "bandwidth exceeded " with If you have plenty of links with in your website with lots of heavy images because of which your website bandwidth is used and we do hate when people stealing your valuable bandwidth from your website by using images that are hosted in your web server?
Use the below changes in .htacess, you will able to prevent it from happening.
view plaincopy to clipboardprint?
------------------------------------------------------------------------------
------------------------------------------------------------------------------
Step 1
RewriteBase /
Step 2.
RewriteCond %{HTTP_REFERER} !^$
Step 3.
RewriteCond %{HTTP_REFERER} !^http://(www.)?queness.com/.*$ [NC]
Step 4.
RewriteRule .(gif|jpg|swf|flv|png)$ /feed/ [R=302,L]
------------------------------------------------------------------------------
------------------------------------------------------------------------------
I hope this trick will defiantly helpful to all website owners.
|