XF 1.2 mybb to xenforo 1.2 import

eyedream

Member
Hi mate finally after 10 hours i have convert it. All working fine just i have one problem
My problam is my old and new urls
My old url look like this

mydomain/forumdisplay.php?fid=8

And new look like this
http://mydomain/forums/muli-download.8/
How can i rediract then and why its show mydomain/forums
Its not installed in sub dir
Kind regards
 
Last edited:
The forum ID for the old forum was 8, if its the same on XenForo for all your content (user ID 1 == user ID 1 on XenForo, post ID 1 == postID 1 on Xenforo, etc.), then you retained IDs.
 
You would put something like this at the top of your .htaccess file:

Code:
RewriteEngine On
RewriteCond %{QUERY_STRING} fid=(\d+)$
RewriteRule ^forumdisplay.php$ /forums/%1 [L,R=301]
yahoooooooo :) thanks a lot Mike now all working like a charm

Please close my topic my problem is solved..
 
Top Bottom