MyBB Community Forums

Full Version: Change redirect url
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum http://tankpitworld.com redirects to my old phpbb forum at http://tankpitworld.com/forums how do I change it so it redirects to my new mybb forums at http://tankpitworld.com/mybb ?

The sooner I can do this the sooner I can move on and forget about phpbb.

Thanks in advance!
Have you setup your cookies correctly?
You can redirect one domain to another one. In your case, edit the .htaccess and add this to it.

RewriteEngine on
RewriteRule ^(.*)$ http://www.your-new-domain.com/$1 [R=301,L]

Obviously change the http:// inside that the link you want redirected to.
Problem solved, thank you for the replies!