So , my "final" ( I hope

) question. I have solved most of the problems directly updating the database. My major concern is 301 redirects. The background is that we have implemented Pretty URLs which rewrites the URL in SMF. They way it does it is that it do not add any topic number. Also, looking on the Swedish Xenforo sites I got referenced it seems like the URL uses the Swedish characters åäö.
As an example a topic, number 2243 would have the following URLs
SMF with Pretty URL:
www.mysite.com/amne/rott-for-500-kr/
phpbb:
www.mysite.com/viewtopic.php?f=8&t=2243
Xenforo:
www.mysite.com/threads/rött-för-500-kr.2243/
The key is to use the topic number as the usage of local character for Xenforo URLs makes it virtually impossible to know how it will be constructed. What I do have is a table in mysql which links the topic number to the Pretty URL which basically would list (for the above example
Topic ID Pretty URL
2243 rott-for-500-kr
Would it be possible to use this table and build any logic in php or similar. We are talking about 3000 topics. I'm not in any way a programmer, hence my question.
Thx in advance for any help
PS. I'm planning to test all steps and will document exactly how I did a potential migration. Will post that here if we move and if there are interest for this type of experiences.