Ampix0
Power Member
- Jan 10, 2012
- 527
- 60
I'm starting my first CPA/PPD site. Custom script and design. I have a referral script in place and I'm sure many of my visitors are just from proxies (which removes the viral intent). I noticed in Google analytics show Proxy.org is a large referrer (not sure how since proxy.org directs you to other proxies.. but w/e). Point being, is there a half decent way to block proxy access to my site?
I was only able to find this htaccess script which upon testing doesn't work well (or at all, hard to tell)
I was only able to find this htaccess script which upon testing doesn't work well (or at all, hard to tell)
Code:
[COLOR=#CCCCCC][FONT=Monaco]RewriteEngine on[/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:VIA} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:FORWARDED} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:XPROXY_CONNECTION} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR][/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$[/FONT][/COLOR]
[COLOR=#CCCCCC][FONT=Monaco]RewriteRule ^(.*)$ ? [F][/FONT][/COLOR]