XF 1.5 301 redirect old phpbb2 threads/forums to xenforo

Add these rules to the top of the .htaccess file in your web root:

Code:
RewriteEngine On

RewriteRule ^ftopic([0-9]+)\.html$ /threads/$1/ [R=301,L]
RewriteRule ^forum([0-9]+)\.html$ /forums/$1/ [R=301,L]
 
Top Bottom