How to Migrate WordPress to Another Domain: A Step-by-Step Guide

Migrating a WordPress site to a new domain can seem daunting, but with the right steps, it can be smooth and error-free. This guide will walk you through the process from start to finish.

Step 1: Set Up Apache Virtual Hosts

First, you need to configure Apache to serve your site from the new domain. Create virtual host files for both HTTP (port 80) and HTTPS (port 443).

Creating Virtual Host Files

sudo touch /etc/apache2/sites-available/newsite.com.conf
sudo touch /etc/apache2/sites-available/newsite.com-le-ssl.conf

Add the following configurations:

For HTTP (newsite.com.conf):

<VirtualHost *:80>
    ServerName newsite.com
    ServerAlias www.newsite.com
    DocumentRoot /var/www/newsite.com
    ErrorLog ${APACHE_LOG_DIR}/newsite.com/error.log
    CustomLog ${APACHE_LOG_DIR}/newsite.com/access.log combined
</VirtualHost>

For HTTPS (newsite.com-le-ssl.conf), ensure you have a Let’s Encrypt certificate:

<VirtualHost *:443>
    ServerName newsite.com
    ServerAlias www.newsite.com
    DocumentRoot /var/www/newsite.com
    ErrorLog ${APACHE_LOG_DIR}/newsite.com/error.log
    CustomLog ${APACHE_LOG_DIR}/newsite.com/access.log combined
    SSLEngine on
    SSLCertificateFile /etc/letsencrypt/live/newsite.com/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/newsite.com/privkey.pem
</VirtualHost>

Activate the new virtual hosts:

sudo a2ensite newsite.com.conf
sudo a2ensite newsite.com-le-ssl.conf

If you don’t have a Let’s Encrypt certificate yet, use Certbot to obtain one:

sudo certbot --apache -d newsite.com -d www.newsite.com

Step 2: Copy WordPress Files

Copy your WordPress files to the new directory:

sudo cp -a /var/www/oldsite.com/. /var/www/newsite.com/

Set the correct permissions:

sudo chown -R www-data:www-data /var/www/newsite.com
sudo chmod -R 755 /var/www/newsite.com

Create and set permissions for the new log directory:

sudo mkdir /var/log/apache2/newsite.com
sudo chown www-data:www-data /var/log/apache2/newsite.com

Verify the virtual host configurations:

sudo apache2ctl configtest

Step 3: Migrate the Database

Export the existing database:

mysqldump -u username -p old_database_name > old_database_backup.sql

Create a new MySQL user for the new website:

mysql -u root -p
CREATE USER 'new_wp_user'@'localhost' IDENTIFIED BY 'new_password';
CREATE DATABASE new_database_name;
GRANT ALL PRIVILEGES ON new_database_name.* TO 'new_wp_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;

Import the backup into the new database:

mysql -u new_wp_user -p new_database_name < old_database_backup.sql

Step 4: Update wp-config.php

Edit wp-config.php in the new site directory, updating the MySQL settings and URLs:

define('DB_NAME', 'new_database_name');
define('DB_USER', 'new_wp_user');
define('DB_PASSWORD', 'new_password');
define('WP_HOME','http://newsite.com');
define('WP_SITEURL','http://newsite.com');

Step 5: Finalizing the Migration

Access your new domain in a browser. If the layout seems off, don’t worry. Log in to the dashboard and install the “Better Search Replace” plugin. Use it to search for oldsite.com and replace it with newsite.com. Make sure to uncheck “dry run” to apply the changes.

Lastly, check for any remaining references to the old site:

grep -Rl 'oldsite.com' /var/www/newsite.com/ | xargs sed -i 's/oldsite.com/newsite.com/g'

Now, your WordPress site should be fully migrated to the new domain. Remember to keep both the old and new sites operational until you’ve confirmed the migration is successful and search engines have updated their indexes.

Leave a Comment

Your email address will not be published. Required fields are marked *

Share the Post:

Related Posts

Barry 2024 总结

2024 是对我很有意义的一年,我换了工作,有弟兄和长辈的陪伴,有成长,有人际关系的反思,有去读书和与人建立关系,探索我想要的未来。 真的非常感恩身边的人,我所拥有的一切。 我觉得时间流逝不可怕,转眼快27了,可能很快就会30,简直不可思议。如果时间过去了自己没有改变,我会觉得很不值得。去年我的flag是比之前更会爱人,我觉得我满意自己的成长,爱远比我以为的要复杂和困难。但是事情的本质就是这样,认清本质而有方向的努力其实会更加心安。 我想对我自己说:你很棒,需要做的事情请去做,否则会后悔。不要担心身边没有支持者,我对你的认识是,你就是应该做提出改变和突破的事情,因为你内心不甘平淡,你也不能忍受无动于衷,你无法躲避内心和感动。知道对的事情,有能力去做而不去做,你做不到。蜘蛛侠里的Uncle Ben说过:Great power comes great responsibility,能力越大责任越大。 我做了很多新的尝试,从Visa裸辞,建立人际关系,参加营会感受神的改变,自己旅游。书本上乃至圣经上的道理,需要更多的人生经历加上反思感悟,才能淬炼出属于自己对爱和人的认识。去经历吧,趁着年轻;思考吧,趁着还对答案有渴望。 你有时候做事过于谨慎,不要太过于害怕去拥抱错了一个人。我很喜欢《死了都要爱》里的歌词: 别一开怀就怕受伤害——《死了都要爱》 你的生命不是关乎你自己,你不是你生命的中心。不要太过于self pity 自怜自爱,遇到不满意的现在就去思考如何改变吧,去探索和感受,不要拖延。你真正的观众很少,坚持自己认为对的事情。 2025 神为我预备了怎样的爱和挑战呢?

Read More

Join Our Newsletter