Knowledge base article
Reconfigure production website to subdomain
View other technical support articles
Related articles
Domain options for shared hosting
Migrate remote transactional website to local server
Other technical support articles
A beginners guide to email spoofing
Accessing your site before changing DNS
An introduction to email authentication
Basic WordPress security and site management
Check MySQL database table disk usage
Configure object cache with memcached and Litespeed Cache plugin
Configure spam filtering in cPanel
Connect via SFTP using SSH key authentication with FileZilla
Connecting to Serversaurus shared hosting via SFTP
Create a clone of your website
Create a SSH key pair and configure your SSH key in cPanel
Create a WordPress administrator via MySQL CLI
Create a WordPress administrator via phpMyAdmin
Create a WordPress cron task in cPanel
Disable automatic WordPress updates via wp-config.php
Download or restore individual files, directories or database backups with JetBackup
Enabling PHP extensions, Changing PHP Version and Setting PHP Options
Export or Import a MySQL database via CLI
Force HTTPS via .htaccess (cPanel)
Getting Started with Anycast DNS
Getting Started with the Content Delivery Network (CDN)
Getting Started with Virtual Machines
Go live with your WordPress staging website
Help! I need a backup of my cPanel-hosted website
Hide .html extension using .htaccess
How did my WordPress website get hacked? What do I do?
How to ensure website generated emails are delivered successfully
How to issue a Let’s Encrypt certificate
How to remove Site Software management
I can receive email but can’t send!
Introduction to LiteSpeed Cache
Manage DNS zones with the cPanel Zone Editor
Manual WordPress migrations in a nutshell
Migrate remote staging website to local hosting server
Migrate remote transactional website to local server
Migrating email from one POP/IMAP email account to another
My site and/or email service is down
Network Firewall (I can’t access my services on a non-standard port)
Optimising Wordfence firewall and security settings
Pointing your domain to Serversaurus
Pointing your domain to Squarespace with cPanel
Prevent website generated spam with CAPTCHA
Push updates from a staging to production website
Recover your hacked WordPress website
Remove Wordfence firewall block via MySQL CLI
Secure your WordPress installation
Setting up email on your iPhone
Subdomains for test sites & more
Unable to renew certificate: The Let’s Encrypt HTTP challenge failed
Understanding CloudLinux resource limits
Update a WordPress website to use a new domain name
Update your WordPress username via phpMyAdmin
Using Serversaurus’ nameservers but hosting your email elsewhere
Using the Serversaurus Cloud CDN with your WordPress website
This guide will teach you how to reconfigure your website to use a subdomain
To complete this guide, please ensure you have:
- Your cPanel login details - These were included in the original Welcome to Serversaurus or IMPORTANT: Hosting Documentation email which you should be able to find in your inbox otherwise follow these instructions on how to update your cPanel password.
- SSH Access - Serversaurus relies on key based authentication to login via SSH/SFTP, if you haven't already, generate your SSH key pair and configure it in cPanel before proceeding with the next steps.
Let's begin!
1. Login to cPanel and navigate to the Subdomain function, create your subdomain of choice, in this guide we will be using a subdomain labeled legacy.
2. This step varies depending on your setup, so please choose from 2a. or 2b. depending on which applied to your circumstance:
2a. You have web browser access to the production website
Using WP Migrate DB plugin, we're going to update the websites database to the new domain name and document root. So login to WordPress dashboard >> Plugins >> Add New >> Install WP Migrate DB >> Activate Plugin.
Then navigate to Tools >> Migrate DB >> Migrate >> Search & Replace >> Update the Replace fields with the subdomain and new directory path.
Once you've filled out the details, select Search & Replace at the bottom of the page to initiate the process, once processing is complete, the website will be dysfunctional. Do not worry, this is all part of the process, please proceed to step 3.
2b. You don't have web browser access to the production website
Open Terminal and SSH to your hosting server (update the following command with your server login details):
ssh username@servername.serversaurus.com.au
Edit the wp-config.php file:
vi public_html/wp-config.php
Above the WP_DEBUG entries enter the following:
Update the entry with your domain and save:
define( 'WP_HOME', 'https://www.legacy.yourdomain.com/' ); define( 'WP_SITEURL', 'https://www.legacy.yourdomain.com/' );
Move the current production site to the subdomain document root:
mv public_html/* ~/legacy.yourdomain.com/
You will now be able to view the website. Our next step is using WP Migrate DB plugin, we're going to update the websites database to the new subdomain name and document root. So login to WordPress dashboard >> Plugins >> Add New >> Install WP Migrate DB >> Activate Plugin.
Then navigate to Tools >> Migrate DB >> Migrate >> Search & Replace >> Update the Replace fields with the production domain and new directory path.
Once you've filled out the details, select Search & Replace at the bottom of the page to initiate the process. Please skip step 3.
3. Move the current production site to the subdomain document root:
Update the following command with your subdomain details.
mv public_html/* ~/legacy.yourdomain.com/
The subdomain is live! Nice work
Troubleshooting recommendations
If you have any warnings/errors, please check for the following common post migration issues.
- Login to WordPress and clear all website cache
- Check DNS is resolving to correct server IP address
- Login to phpMyAdmin, check wp_options table and confirm the siteurl and home are pointing to the correct domain name- update if required
- Check all PHP dependencies are enabled.
Last updated November 30, 2023