Yeah, a text search works. Looking at the HTTP headers, Iâm not sure how itâs actually making the determination how to map from the old thread to the new - there are two 301 redirects that take place; one that goes from:
https://forums.opensuse.org/showthread.php/576499-Tumbleweed-zypper-upgrade-to-6-0-kernel-wipes-grub2-GUI-menu
to
http://forums.opensuse.org/thread/576499
(Weird that it goes to http rather than https), and then from the HTTPS version of that link to
https://forums.opensuse.org/t/tumbleweed-zypper-upgrade-to-6-0-kernel-wipes-grub2-gui-menu/153131
non_spaceâs issue, though, is that his bookmarks all use the parameterized URLs. I suppose it might be possible for him to export those links and automate the search on Google to get the static links (Python with Mechanize, maybe?), but thatâs going to be pretty custom stuff.
Ah, yes, 1.2+ million. Thatâs a huge redirect table to build, and even if it were automated by the content migration process, the time to do the lookup from old link to new link wouldnât be instantaneous. But now Iâm curious how the static link redirect works at all.
ETA: The redirect from HTTP to HTTPS is handled by another request header - âupgrade-insecure-requestsâ. So that mystery is solved (I shouldâve thought of that, too early in the morning and I havenât had my tea yet).
ETA2: And it looks like the migration tool does build topic-level redirects, but those seem to be handed using a âthread IDâ mapping to âtopic IDâ, which clearly is pretty quick. But with threads in vBulletin that could have hundreds of messages, doing the conversion of âpost IDâ (which seems to be the parameter in the links that arenât working) to âtopic IDâ would be more time consuming to do.
ETA3: It looks like the mapping table is a static table (looking at the code for the migration tool), but it looks like it also should work with bookmarks/links that use the topic ID (looking at the code) - it pulls from Topic.listable_topics
(thatâs the Ruby variable name) - so itâs based entirely on the vBulletin topics and not posts. But it does that and just creates a CSV file with the redirects in it.