MyBB Community Forums

Full Version: change domain name (with URL redirects)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

is there a how-to somewhere for changing the domain name of an existing board including URL rewrite, so that existing users get redirected (and google..)?

regards,

PAT
ACP > Configurations > General Configuration > Board URL > change.
Edit: Detailed tutorial: http://mybbmodding.net/forums/showthread.php?tid=4
sure, but this leaves the second part of the question (the most important one)
add this to your .htaccess

Options +FollowSymLinks

RewriteEngine on

RewriteCond %{HTTP_HOST} ^(www.)?olddomin.com
RewriteRule (.*) http://newdomin.com/$1 [R=301,L]