Here's an example of what's going on... https://www.ebay.com/itm/Vintage-1963-Slingerland-Artist-Snare-Drum-White-Marine-Pearl-COB-8-Lug-Hoops-NR-/263727954721?oid=282984166573However, as mentioned above, there is a message that says "The listing you're looking for is no longer available...". Just click where it says "listing" and it will take you to the original item. In this case, it was for a "Slingerland" snare drum that is anything but a Slingerland! I messaged the seller about this and he never responded. What is even more odd are the bids from people who seem to believe it's a Slingerland snare drum! It sold for $142.50! I don't get it!-Mark
Thanks for the link. Very helpful. What the eBay programmers have done is substituted a new URL with a variable at the end ?oid=282984166573 which is the item link you should have been going to. The variable oid would mean "original" (or maybe "old)" id prior to the unwanted replacement. It turns out they have another variable &nordt which if set to true on an otherwise simple URL to an item number shuts off the redirection (hence that variable name nordt = no redirection). Here is the canonical form (shortest possible with all the other unnecessary stuff taken out) to go to the original auction:
https://www.ebay.com/itm/282984166573?nordt=true
I save eBay URLs in one field of my database and now I know how I can always get around the changes they have made recently. Naughty eBay programmers.
It would be useful to know how you came by this particular link. Was it something saved in your watchlist and when you clicked on it you were taken somewhere else? Was it a link which was sent to you in an email via a saved search? Was it the result of a search of completed auctions? All of these (and there are more) will be different pieces of code which can be doing this re-writing of URLs. I wonder if we can track it down further and thus learn more about how to avoid it.