SMF urls to Xenforo urls - Redirect via htaccess

319 Views Asked by At

I need to redirect old urls of an SMF forum system to new Xenforo. Old url is :

http://www.example.com/forum/index.php?topic=XXXX.0

and new url is :

http://www.example.com/forum/threads/XXXX/

What is the true htaccess code?

1

There are 1 best solutions below

4
Gerrit0 On BEST ANSWER

This should work, though it does assume that your threads have the same ID in both SMF and XF. It should be placed before Xenforo's redirects.

RewriteCond %{QUERY_STRING} ^topic=(\d+).*$
RewriteRule ^index\.php$ http://www.example.com/forum/threads/%1/? [R=302,L]