Hi all,
I have a very curious issue happening with one of the sites that I control. It concerns a site with two domains, one parked on top of the other and I have coded it to deliver different content depending on which domain is requested:
Code:
if($_SERVER['HTTP_HOST'] == 'example.com')
{
// serve this content
}else{
// serve that content
}
Now this works fine for me, but my client sees identical content, even though the domain in the address bar is different.
I have tested this with a variety of browsers on linux, XP and Vista in my office and all is good, but I am yet to test it on different locations/ISP's/etc. But this should be impossible, yet here it is! So - can anyone suggest how can this happen?
TIA, I hope someone can shed some light on it.