Double ID on URLs
-
Hi-
I've just noticed that if I follow a link from an external website or app; the URL is broken - It looks like there's a redirect adding a duplicate ID on the end of the URL?So for example, following
http://gaytor.rent/details.php?id=52ad99d3e3c1b45b993357eff24e359ce18d93ccd236fe3d
becomes
https://www.gaytor.rent/details.php?id=52ad99d3e3c1b45b993357eff24e359ce18d93ccd236fe3d?id=52ad99d3e3c1b45b993357eff24e359ce18d93ccd236fe3dAnyone else seen this? I'm a web dev myself and can help diagnose if needbe.
Thanks
-vexbit -
I've actually figured it out. If you miss the "www" you get a redirect which doubles up the ID. If you go straight to
http://www.gaytor.rent/details.php?id=52ad99d3e3c1b45b993357eff24e359ce18d93ccd236fe3d
it works fine!Nothing really to be fixed, just in case someone else has a similar problem!
-
@vexbit said in Double ID on URLs:
I've actually figured it out.
Clever sleuthing on your part! I can remember that some years back not every website was hospitable to omitting the www: If the full address was www.sitename.tld, and one manually entered simply sitename.tld, the DNS system (or something like that) would get all confused. I think that got cleaned up, even if there are some interesting artifacts as you have discovered.
-
@vexbit Thanks a lot, that did help!