Corwin
Active member
I just migrated from phpBB3 to Xenforo with integrated importer. Everything was ok... but links redirection was a problem. But it's easy with conversion from phpbb3, you will need only to add few lines to .htaccess
Here are that lines.
Add them before that line
This 4 lines will redirect all forums and threads to XenForo.
Here are that lines.
Code:
RewriteCond %{QUERY_STRING} (^|&)t=([0-9]+)(&|$) [NC]
RewriteRule ^viewtopic\.php$ /threads/%2? [L,R=301,NC]
RewriteCond %{QUERY_STRING} f=(\d+)$ [NC]
RewriteRule ^viewforum\.php$ /forums/%1 [L,R=301,NC]
Add them before that line
Code:
RewriteCond %{REQUEST_FILENAME} -f [OR]
This 4 lines will redirect all forums and threads to XenForo.