I own this site proxyindex . com and this site is stealing alot of my traffic - http://www.freeproxysurfing.com if you goto there homepage and view source you see this -------- <tr> <td align="left" valign="top"> <form name="poxy_url_form" method="get" action="http://www.proxyindex.com/index.php"> <input type="hidden" name="q" value="" id="url_input" /> <input type="hidden" name="hl" value="" /> </form> ------------ So as you can see they are linking to my site and causing me huge bandwith problems. How can i fix this?
you could maybe ban them as a referrer. Not sure the specifics. Do you have anyway of making money from this traffic?
This actually is hilarious. Are they creating a form and sending it to your site? And blocking them as a referrer doesn't do anything. If you want, change your index.php to index and this will cause an error with their form I guess.
If you have mod_rewrite installed, try this .htaccess file. RewriteEngine on RewriteBase / RewriteCond %{HTTP_REFERER} ^http://.*freeproxysurfing\.com [NC,OR] rewriteRule ^.* - [F,L] Code (markup): This will block all referrals from that site.