Redirect proxies

DoodStream76

Regular Member
Joined
Dec 26, 2024
Messages
205
Reaction score
111
Okay,

The goal is to redirect all Proxy / fake traffic. I have an IP software (ipinfo) that can detect proxies. But the next step is to redirect this traffic, or block it from even being able to visit the website.

Does anyone have a flow they recommend to accomplish this?

THANKS
 
We did it in the web server layer using IP2Location.io API. When a visitor hit our Apache2 web server, the PHP passed the IP address to IP2Location.io API to check the fraud score or VPN parameters. We will block the access from the IP address if it is a VPN.
We expect to have visitors using VPN, so I don't want to completely block access. So I think we'll just block proxy traffic, but allow VPNs. idk tho....
 
Hey, for redirecting or blocking proxy traffic, a good approach is to integrate your IP detection tool (like ipinfo) with server-side rules. You can either block proxies directly by setting up IP blacklists or redirect them to a different URL using server-side redirects (301/302). For more granular control, you could use a combination of firewall settings and IP geolocation checks. Cloudflare also has good proxy-blocking features if you want something more automated
 
Okay,

The goal is to redirect all Proxy / fake traffic. I have an IP software (ipinfo) that can detect proxies. But the next step is to redirect this traffic, or block it from even being able to visit the website.

Does anyone have a flow they recommend to accomplish this?

THANKS
Use your IP detection tool to flag proxy traffic, then set up your server or firewall (like Cloudflare) to block or redirect it. Check your tool’s or hosting provider’s guides for setup steps, or contact their support for help.
 
Back
Top