Hey guys,
Hope someone can figure out how to solve my problem.
I'm currently doing traffic arbitrage with a network that doesn't accept traffic from platforms.
i'm using an htaccess to redirect traffic that comes from a certain referrer towards the traffic buyer.
Code:
RewriteCond %{HTTP_REFERER} .*TrafficBroker.com*$
RewriteCond %{HTTP_USER_AGENT} (anything i find profitable) [NC]
RewriteRule ^(.*)$ TrafficBuyer.com [R=302,L]
Problem is, I tracked the traffic of TrafficBuyer.com and the referal is TrafficBroker.com.
is there anyway to hide such information with htaccess redirect ?
thank in advance.