XF 1.3 xenForo to xenForo redirects

Brent W

Well-known member
I am importing a xenForo forum into an already existing and populated xenForo installation. I need all the threads / attachments / user links to go to the correct place after the import. How can I do this?
 
I just did this. See my post and Jakes reply.

http://xenforo.com/community/threads/merged-2-xenforo-sites.66011/#post-694324

I also added these rewrite rules to redirect members, forums and categories.

Code:
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.net$
RewriteRule ^forums/([0-9]+)/ http://domain/forumdisplay.php?f=$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.net$
RewriteRule ^categories/([0-9]+)/ http://domain/forumdisplay.php?f=$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.net$
RewriteRule ^members/([0-9]+)/ http://domain.com/member.php?u=$1 [R=301,L]
 
Top Bottom