MyBB redirect

Stemis

Active member
How to perform the redirection from MyBB to XenForo if it MyBB was in the folder /forum And XenForo will be in the root? 301 permanent redirect or something else? What can I do with Google Webmaster tools?
 
You can put this line into your config.php file in MyBB:

Code:
header("Location: http://www.yoursite.com/");

That will redirect all MyBB pages to your web root.
 
Top Bottom