question about google ads

Crypto Man

BANNED
Joined
Nov 8, 2025
Messages
246
Reaction score
49
these days I'm seeing Google Ads where the display url is [play . google . com], but after clicking, I end up on a sites.google.com page.

i traced the redirects and couldn't find any obvious redirect chain.

how do you think they're doing this? Any ideas?
ChatGPT Image Jun 27, 2026, 03_53_53 AM.jpg
 
Nah fam, display URL ≠ final destination, my guy.
In Google Ads, the display URL and where folks actually end up don’t always gotta be the exact same thing, as long as it stays inside Google policy.


There a few ways that can happen without some loud obvious redirect chain.
Parallel tracking

Google Ads can run tracking in the background. So instead of some goofy-looking 302 -> 302 -> 302 chain, Google might fire tracking requests separately while sending users straight to the landing page. If you only watching browser redirects, you might miss what’s really going on.
Deep links
If the advertiser pushing an app, the ad can use play.google.com or an app identifier, but the click logic can still decide where users get sent.
  • Play Store if app install is the goal
  • A web fallback page
  • A campaign page on sites.google.com
JS navigation
No HTTP redirect even needed. The first page can load then instantly run something like:
window.location = "https://sites.google.com/...";
or:
location.replace(...);
Boom, user somewhere else.

Old-school move (Meta refresh)
<meta http-equiv="refresh"
content="0;url=https://sites.google.com/...">

See? No visible server redirect chain at all.

Internal Google routing stuff
Both play.google.com and sites.google.com sit under Google infrastructure, so internal routing can happen in ways that don’t show up as some clean redirect chain.

Cloaking or policy abuse
Not getting deep into that one, but some advertisers try making things look more trustworthy by showing a familiar Google domain while routing traffic somewhere different.


Most likely though? Either client-side navigation (JS/meta refresh) or parallel tracking doing its thing.
 
Good breakdown, parallel tracking is definitely the most likely explanation here. A lot of people miss that because they're only watching the browser and not what's happening in the background.
The JS navigation angle is also solid — window.location swap happens so fast most redirect tracers don't even catch it properly.
Either way both play.google.com and sites.google.com sitting on the same infrastructure makes the whole thing cleaner to pull off without obvious traces.
 
this has been used for months in blackhat niches, they simply use google redirect links with usg/utm parameters in tracker. Its very efficient since google bots can't see the directing page.
 
Back
Top