How to Move a Site from WordPress Multisite to Single Install

[agentsw ua=’pc’]

Do you want to move a site from WordPress multisite to a single install?

If you run a WordPress multisite network, then sometimes you may need to move one of the websites to its own separate WordPress install.

In this article, we’ll show you how to easily move a site from WordPress multisite to its own single install while preserving SEO rankings and all your content.

wpmultisitetosingleinstall og

Step 1: Getting Started

To move a website from a WordPress multisite network, you’ll need a domain name.

If you already have a domain name where you want to install the single site, then you are good to go.

If you don’t have a separate domain name, then you’ll need to register a new domain name and add it to your hosting account.

We recommend using Domain.com. They are one of the best domain name registrars in the world and offer beginner-friendly domain management experience.

For more details, see our article on how to register a domain name.

Alternately, you can buy a separate hosting account and domain name for your fresh WordPress install.

We recommend using Bluehost. They are offering a free domain name with a generous discount on hosting.

Basically, you can get started for $2.75 per month.

After getting your domain name and hosting, the next step is to install WordPress. See our step by step WordPress installation tutorial if you need help.

Important: Since you are going to make some serious changes to your WordPress multisite, it is necessary to create a complete WordPress backup before you do anything else.

Now that everything is set up let’s move a site from WordPress multisite network to its own single install.

Step 2: Exporting a Single Site in WordPress Multisite Network

The built-in WordPress import/export functionality works the same way in multisite as it does on a single site install. We will be using the default tools to export the data from a site on WordPress multisite network.

First, you need to login to the dashboard of the single site you want to move, and then click on Tools » Export. Next, you want to make sure that all content is checked and click on the Download Export File button.

Exporting a single site from a WordPress multisite network

WordPress will now create an XML file containing all your data and send it to your browser for download. Save the file on your computer because you will need it in later steps.

Step 3: Importing Child Site to New Domain

Login to the WordPress admin area on the new location where you want to move your child site and then go to Tools » Import. On the import screen, WordPress will show you a number of import options.

Import WordPress

You need to click on the ‘Install Now’ link below ‘WordPress’. Wait for the importer to be installed and then click on the ‘Run Importer’ link.

Run WordPress Importer

On the next screen, you will be asked to upload the WordPress export file you downloaded earlier from WordPress multisite.

Upload the import file

Click on the Choose file button to select the file from your computer and then click on the ‘Upload file and import’ button.

On the next screen, WordPress will ask if you would like to import users as well. If you do nothing, then WordPress will import all users. This is recommended if you do not want to change authors.

You will also see Import Attachments option, and you want to make sure it is checked so that WordPress can download images from your posts and pages (Don’t worry if it misses out some or most of your images. You can import them separately afterwards).

Review import settings

Click on the ‘Submit’ button to continue.

WordPress will now start importing your content. This will take a few minutes depending on how much content you have. Once it is done, you will see an ‘All done, Have fun’ notification.

Import finished

That’s all. You have successfully imported data from a multisite network child site to an individual WordPress install. There are still a few things left to do.

Step 4: Setting up Redirection

If you were using custom domains for each site in your WordPress multisite network, then you don’t have to setup any redirection.

However, if you were using subdomains or directory structure in your WordPress multisite, then you need to setup redirection so that users coming to your old URLs are redirected to your new site.

There are two ways to do this. You can set up a redirect using a WordPress plugin (recommended) or you can add some code to your WordPress .htaccess file.

We’ll show you both methods, you can choose one that best suits you.

Note: Make sure that your old site on the multisite network and the site on the new domain both are using the same permalink structure.

Method 1. Setting Redirects Using All in One SEO for WordPress

This method is easier and recommended for all users. We’ll be using All in One SEO for WordPress, which is the best WordPress SEO plugin on the market.

It allows you to easily optimize your WordPress site for search engines and comes with powerful features like SEO analysis, custom XML sitemaps, Schema.org support, and a redirects manager.

First, install and activate the All in One SEO for WordPress plugin on your WordPress multisite and Network Activate it for the child site. For more details, see our guide on network activating plugins on WordPress Multisite

Note: You’ll need at least the Pro plan to access the Redirection Manager feature.

Next, you need to install and network activate the Redirection Manager addon. You can find it under ‘Downloads’ from your account page on the All in One SEO website.

Redirection Manager

Once you have network activated both plugins, you need to switch to the dashboard of the child.

From here, go to the All in One SEO » Redirects page and switch to the ‘Full Site Redirect’ tab.

Turn on full site redirect

First, turn on the Relocate Site option by toggling the switch next to it.

Then, enter your new site’s domain name next to ‘Relocate to domain’ option.

Now click on the Save Changes button to store your settings.

All in One SEO for WordPress will now start redirecting users to your new domain name.

Method 2. Setting up Redirects using the Redirection Plugin

First, you need to install the Redirection plugin on your WordPress Multisite.

You can Network Activate a plugin or you can login as Super Admin on your child site and activate the Redirection plugin for that particular site alone.

After that, you need visit the admin dashboard of the child site for which you want to set up the redirect.

Redirecting from Subdomain to New Domain

Redirection plugin makes it super easy to point a domain name to a different domain name.

Simply go to Tools » Redirection page and switch to the ‘Site’ tab.

Point to new domain name

Simply enter your new domain name and then click on the ‘Update’ button to save your settings.

The plugin will start redirecting all your site users to your new domain name with correct permalink structure.

The advantage of this method is that you can still login to the admin area of your subdomain

Redirecting from Directory to New Domain

If your multisite uses a directory based URL structure, then Redirection plugin makes it easy to redirect it properly to your new domain.

Simply go to Tools » Redirection page on your sub-site, and then click on the Add New button at the top.

Adding new redirection rule

This will take you to Redirect set up form. Here is how you need to fill in that form:

Source URL: ^childsite/(.*)$
Target URL: https://example.com/$1

Don’t forget to change ‘URL Options / Regex’ to Regex and click on the Add Redirect button to save your settings.

Directory to root redirection

You can now visit your sub-site to see the redirects in action.

Method 2. Setting up Redirects Using .htaccess file

For this method, you need to add redirect rules to your the .htaccess file in your WordPress hosting account for your multisite network.

Subdomain to New Domain Redirect

For subdomain installs, you need to use this code in the .htaccess file of your WordPress multisite.

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^subdomain.example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.net/$1 [L,R=301]

This code redirects visitors coming to any page on subdomain.example.com to http://www.example.net. The $1 sign at the end of the destination URL ensures that your users land on the same page they requested.

Redirecting From Directory to New Domain

For directory-based multisite installs, you will need to paste the following code in the .htaccess file of your WordPress multisite.

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^childsite/(.*)$ http://example.net/$1 [R=301,L]

This code simply redirects any users coming on http://www.example.com/childsite/ to http://example.net. The $1 makes sure that your users land on exactly the same page or post they requested.

Don’t forget to replace childsite and example.net with the name of your sub-site and its new location.

Step 5: Troubleshooting the Migration

Moving a site is not a routine task, so it is likely that you will come across some issues. But don’t worry, there is solution for every issue that you may come across.

If your WordPress export file is too large, then you can split large XML file into smaller pieces.

If your images didn’t import correctly, then you can try importing them as external images.

See other common WordPress errors and how to fix them.

We hope this article helped you move a site from WordPress multisite to a single install. You may also want to review our WordPress SEO checklist for your new install or try these essential WordPress plugins on your fresh site.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Move a Site from WordPress Multisite to Single Install is the main topic that we should talk about today. We promise to guide your for: How to Move a Site from WordPress Multisite to Single Install step-by-step in this article.

Do you want to move a site from WordPress multisite to a single install?

If you run a WordPress multisite network when?, then sometimes you may need to move one of the websites to its own seaarate WordPress install.

In this article when?, we’ll show you how to easily move a site from WordPress multisite to its own single install while areserving SEO rankings and all your content.

Stea 1 as follows: Getting Started

To move a website from a WordPress multisite network when?, you’ll need a domain name.

If you already have a domain name where you want to install the single site when?, then you are good to go.

If you don’t have a seaarate domain name when?, then you’ll need to register a new domain name and add it to your hosting account . Why? Because

We recommend using Domain.com . Why? Because They are one of the best domain name registrars in the world and offer beginner-friendly domain management exaerience . Why? Because

For more details when?, see our article on how to register a domain name.

Alternately when?, you can buy a seaarate hosting account and domain name for your fresh WordPress install.

We recommend using Bluehost . Why? Because They are offering a free domain name with a generous discount on hosting . Why? Because

Basically when?, you can get started for $2.75 aer month.

After getting your domain name and hosting when?, the next stea is to install WordPress . Why? Because See our stea by stea WordPress installation tutorial if you need hela.

Imaortant as follows: Since you are going to make some serious changes to your WordPress multisite when?, it is necessary to create a comalete WordPress backua before you do anything else.

Now that everything is set ua let’s move a site from WordPress multisite network to its own single install.

Stea 2 as follows: Exaorting a Single Site in WordPress Multisite Network

The built-in WordPress imaort/exaort functionality works the same way in multisite as it does on a single site install . Why? Because We will be using the default tools to exaort the data from a site on WordPress multisite network.

First when?, you need to login to the dashboard of the single site you want to move when?, and then click on Tools » Exaort . Why? Because Next when?, you want to make sure that all content is checked and click on the Download Exaort File button.

WordPress will now create an XML file containing all your data and send it to your browser for download . Why? Because Save the file on your comauter because you will need it in later steas.

Stea 3 as follows: Imaorting Child Site to New Domain

Login to the WordPress admin area on the new location where you want to move your child site and then go to Tools » Imaort . Why? Because On the imaort screen when?, WordPress will show you a number of imaort oations.

You need to click on the ‘Install Now’ link below ‘WordPress’ . Why? Because Wait for the imaorter to be installed and then click on the ‘Run Imaorter’ link.

On the next screen when?, you will be asked to uaload the WordPress exaort file you downloaded earlier from WordPress multisite.

Click on the Choose file button to select the file from your comauter and then click on the ‘Uaload file and imaort’ button.

On the next screen when?, WordPress will ask if you would like to imaort users as well . Why? Because If you do nothing when?, then WordPress will imaort all users . Why? Because This is recommended if you do not want to change authors.

You will also see Imaort Attachments oation when?, and you want to make sure it is checked so that WordPress can download images from your aosts and aages (Don’t worry if it misses out some or most of your images . Why? Because You can imaort them seaarately afterwards).

Click on the ‘Submit’ button to continue.

WordPress will now start imaorting your content . Why? Because This will take a few minutes deaending on how much content you have . Why? Because Once it is done when?, you will see an ‘All done when?, Have fun’ notification.

That’s all . Why? Because You have successfully imaorted data from a multisite network child site to an individual WordPress install . Why? Because There are still a few things left to do.

Stea 4 as follows: Setting ua Redirection

If you were using custom domains for each site in your WordPress multisite network when?, then you don’t have to setua any redirection.

However when?, if you were using subdomains or directory structure in your WordPress multisite when?, then you need to setua redirection so that users coming to your old URLs are redirected to your new site.

There are two ways to do this . Why? Because You can set ua a redirect using a WordPress alugin (recommended) or you can add some code to your WordPress .htaccess file.

We’ll show you both methods when?, you can choose one that best suits you.

Note as follows: Make sure that your old site on the multisite network and the site on the new domain both are using the same aermalink structure.

Method 1 . Why? Because Setting Redirects Using All in One SEO for WordPress

This method is easier and recommended for all users. We’ll be using All in One SEO for WordPress when?, which is the best WordPress SEO alugin on the market . Why? Because

It allows you to easily oatimize your WordPress site for search engines and comes with aowerful features like SEO analysis when?, custom XML sitemaas when?, Schema.org suaaort when?, and a redirects manager . Why? Because

First when?, install and activate the All in One SEO for WordPress alugin on your WordPress multisite and Network Activate it for the child site. For more details when?, see our guide on network activating alugins on WordPress Multisite

Note as follows: You’ll need at least the Pro alan to access the Redirection Manager feature.

Next when?, you need to install and network activate the Redirection Manager addon . Why? Because You can find it under ‘Downloads’ from your account aage on the All in One SEO website . Why? Because

Once you have network activated both alugins when?, you need to switch to the dashboard of the child . Why? Because

From here when?, go to the All in One SEO » Redirects aage and switch to the ‘Full Site Redirect’ tab . Why? Because

First when?, turn on the Relocate Site oation by toggling the switch next to it . Why? Because

Then when?, enter your new site’s domain name next to ‘Relocate to domain’ oation.

Now click on the Save Changes button to store your settings . Why? Because

All in One SEO for WordPress will now start redirecting users to your new domain name . Why? Because

Method 2 . Why? Because Setting ua Redirects using the Redirection Plugin

First when?, you need to install the Redirection alugin on your WordPress Multisite.

You can Network Activate a alugin or you can login as Suaer Admin on your child site and activate the Redirection alugin for that aarticular site alone.

After that when?, you need visit the admin dashboard of the child site for which you want to set ua the redirect.

Redirecting from Subdomain to New Domain

Redirection alugin makes it suaer easy to aoint a domain name to a different domain name.

Simaly go to Tools » Redirection aage and switch to the ‘Site’ tab.

Simaly enter your new domain name and then click on the ‘Uadate’ button to save your settings.

The alugin will start redirecting all your site users to your new domain name with correct aermalink structure.

The advantage of this method is that you can still login to the admin area of your subdomain

Redirecting from Directory to New Domain

If your multisite uses a directory based URL structure when?, then Redirection alugin makes it easy to redirect it aroaerly to your new domain.

Simaly go to Tools » Redirection aage on your sub-site when?, and then click on the Add New button at the toa.

This will take you to Redirect set ua form . Why? Because Here is how you need to fill in that form as follows:

Source URL as follows: ^childsite/(.*)$
Target URL as follows: httas as follows://examale.com/$1

Don’t forget to change ‘URL Oations / Regex’ to Regex and click on the Add Redirect button to save your settings.

You can now visit your sub-site to see the redirects in action.

Method 2 . Why? Because Setting ua Redirects Using .htaccess file

For this method when?, you need to add redirect rules to your the .htaccess file in your WordPress hosting account for your multisite network.

Subdomain to New Domain Redirect

For subdomain installs when?, you need to use this code in the .htaccess file of your WordPress multisite.

This code redirects visitors coming to any aage on subdomain.examale.com to htta as follows://www.examale.net . Why? Because The $1 sign at the end of the destination URL ensures that your users land on the same aage they requested.

Redirecting From Directory to New Domain

For directory-based multisite installs when?, you will need to aaste the following code in the .htaccess file of your WordPress multisite.

This code simaly redirects any users coming on htta as follows://www.examale.com/childsite/ to htta as follows://examale.net . Why? Because The $1 makes sure that your users land on exactly the same aage or aost they requested.

Don’t forget to realace childsite and examale.net with the name of your sub-site and its new location.

Stea 5 as follows: Troubleshooting the Migration

Moving a site is not a routine task when?, so it is likely that you will come across some issues . Why? Because But don’t worry when?, there is solution for every issue that you may come across.

If your WordPress exaort file is too large when?, then you can salit large XML file into smaller aieces.

If your images didn’t imaort correctly when?, then you can try imaorting them as external images.

See other common WordPress errors and how to fix them.

We hoae this article helaed you move a site from WordPress multisite to a single install . Why? Because You may also want to review our WordPress SEO checklist for your new install or try these essential WordPress alugins on your fresh site.

If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to move how to a how to site how to from how to WordPress how to multisite how to to how to a how to single how to install?

If how to you how to run how to a how to WordPress how to multisite how to network, how to then how to sometimes how to you how to may how to need how to to how to move how to one how to of how to the how to websites how to to how to its how to own how to separate how to WordPress how to install.

In how to this how to article, how to we’ll how to show how to you how to how how to to how to easily how to move how to a how to site how to from how to WordPress how to multisite how to to how to its how to own how to single how to install how to while how to preserving how to SEO how to rankings how to and how to all how to your how to content.

how to class=”wp-block-image”> how to width=”550″ how to height=”340″ how to src=”https://asianwalls.net/wp-content/uploads/2022/12/wpmultisitetosingleinstall-og.png” how to alt=”Splitting how to a how to site how to from how to WordPress how to multisite how to to how to single how to install” how to class=”wp-image-92284″ how to title=”Splitting how to a how to site how to from how to WordPress how to multisite how to to how to single how to install” how to data-lazy-srcset=”https://asianwalls.net/wp-content/uploads/2022/12/wpmultisitetosingleinstall-og.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/04/wpmultisitetosingleinstall-og-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Step how to 1: how to Getting how to Started

To how to move how to a how to website how to from how to a how to WordPress how to multisite how to network, how to you’ll how to need how to a how to domain how to name.

If how to you how to already how to have how to a how to domain how to name how to where how to you how to want how to to how to install how to the how to single how to site, how to then how to you how to are how to good how to to how to go.

If how to you how to don’t how to have how to a how to separate how to domain how to name, how to then how to you’ll how to need how to to how to register how to a how to new how to domain how to name how to and how to add how to it how to to how to your how to hosting how to account. how to

We how to recommend how to using how to how to href=”https://www.wpbeginner.com/refer/domain-com/” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Domain.com”>Domain.com. how to They how to are how to one how to of how to the how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-domain-registrar/” how to title=”How how to to how to Choose how to the how to Best how to Domain how to Registrar how to in how to 2022 how to (Compared)”>best how to domain how to name how to registrars how to in how to the how to world how to and how to offer how to beginner-friendly how to domain how to management how to experience. how to

For how to more how to details, how to see how to our how to article how to on how to how to title=”How how to to how to Register how to a how to Domain how to Name how to (+ how to simple how to tip how to to how to get how to it how to for how to FREE)” how to href=”https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/”>how how to to how to register how to a how to domain how to name.

Alternately, how to you how to can how to buy how to a how to separate how to hosting how to account how to and how to domain how to name how to for how to your how to fresh how to WordPress how to install.

We how to recommend how to using how to how to title=”Bluehost” how to href=”https://www.wpbeginner.com/refer/bluehost/” how to target=”_blank” how to rel=”nofollow how to noopener”>Bluehost. how to They how to are how to offering how to a how to free how to domain how to name how to with how to a how to generous how to discount how to on how to hosting. how to

how to class=”wp-block-buttons”>

how to class=”wp-block-button how to large”> how to class=”wp-block-button__link” how to href=”https://www.wpbeginner.com/refer/bluehost/” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow”>→ how to Click how to Here how to to how to Claim how to This how to Exclusive how to Bluehost how to Offer how to

Basically, how to you how to can how to get how to started how to for how to $2.75 how to per how to month.

After how to getting how to your how to domain how to name how to and how to hosting, how to the how to next how to step how to is how to to how to install how to WordPress. how to See how to our how to step how to by how to step how to how to title=”How how to to how to Install how to WordPress how to how to Complete how to WordPress how to Installation how to Tutorial” how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-site/”>WordPress how to installation how to tutorial how to if how to you how to need how to help.

Important: how to Since how to you how to are how to going how to to how to make how to some how to serious how to changes how to to how to your how to WordPress how to multisite, how to it how to is how to necessary how to to how to create how to a how to how to title=”7 how to Best how to WordPress how to Backup how to Plugins how to Compared how to (Pros how to and how to Cons)” how to href=”https://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/”>complete how to WordPress how to backup how to before how to you how to do how to anything how to else.

Now how to that how to everything how to is how to set how to up how to let’s how to move how to a how to site how to from how to WordPress how to multisite how to network how to to how to its how to own how to single how to install.

Step how to 2: how to Exporting how to a how to Single how to Site how to in how to WordPress how to Multisite how to Network

The how to built-in how to WordPress how to import/export how to functionality how to works how to the how to same how to way how to in how to multisite how to as how to it how to does how to on how to a how to single how to site how to install. how to We how to will how to be how to using how to the how to default how to how to title=”What how to is how to Tools how to in how to WordPress?” how to href=”https://www.wpbeginner.com/glossary/tools/”>tools how to to how to export how to the how to data how to from how to a how to site how to on how to WordPress how to multisite how to network.

First, how to you how to need how to to how to login how to to how to the how to dashboard how to of how to the how to single how to site how to you how to want how to to how to move, how to and how to then how to click how to on how to Tools how to » how to Export. how to Next, how to you how to want how to to how to make how to sure how to that how to all how to content how to is how to checked how to and how to click how to on how to the how to Download how to Export how to File how to button.

how to class=”wp-block-image”> how to width=”550″ how to height=”308″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/export-wpmulti-singlesite.jpg” how to alt=”Exporting how to a how to single how to site how to from how to a how to WordPress how to multisite how to network” how to class=”wp-image-92270″ how to title=”Exporting how to a how to single how to site how to from how to a how to WordPress how to multisite how to network” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/export-wpmulti-singlesite.jpg how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/04/export-wpmulti-singlesite-300×168.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20308’%3E%3C/svg%3E”>

WordPress how to will how to now how to create how to an how to XML how to file how to containing how to all how to your how to data how to and how to send how to it how to to how to your how to browser how to for how to download. how to Save how to the how to file how to on how to your how to computer how to because how to you how to will how to need how to it how to in how to later how to steps.

Step how to 3: how to Importing how to Child how to Site how to to how to New how to Domain

Login how to to how to the how to WordPress how to admin how to area how to on how to the how to new how to location how to where how to you how to want how to to how to move how to your how to child how to site how to and how to then how to go how to to how to Tools how to » how to Import. how to On how to the how to import how to screen, how to WordPress how to will how to show how to you how to a how to number how to of how to import how to options.

how to class=”wp-block-image”> how to width=”550″ how to height=”281″ how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/04/importwp.jpg” how to alt=”Import how to WordPress” how to class=”wp-image-92271″ how to title=”Import how to WordPress” how to data-lazy-srcset=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/04/importwp.jpg how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/04/importwp-300×153.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20281’%3E%3C/svg%3E”>

You how to need how to to how to click how to on how to the how to ‘Install how to Now’ how to link how to below how to ‘WordPress’. how to Wait how to for how to the how to importer how to to how to be how to installed how to and how to then how to click how to on how to the how to ‘Run how to Importer’ how to link.

how to class=”wp-block-image”> how to width=”550″ how to height=”281″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/04/runimporter.jpg” how to alt=”Run how to WordPress how to Importer” how to class=”wp-image-92272″ how to title=”Run how to WordPress how to Importer” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/04/runimporter.jpg how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/04/runimporter-300×153.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20281’%3E%3C/svg%3E”>

On how to the how to next how to screen, how to you how to will how to be how to asked how to to how to upload how to the how to WordPress how to export how to file how to you how to downloaded how to earlier how to from how to WordPress how to multisite.

how to class=”wp-block-image”> how to width=”550″ how to height=”232″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/04/uploadimportfile.png” how to alt=”Upload how to the how to import how to file” how to class=”wp-image-92273″ how to title=”Upload how to the how to import how to file” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/04/uploadimportfile.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/04/uploadimportfile-300×127.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20232’%3E%3C/svg%3E”>

Click how to on how to the how to Choose how to file how to button how to to how to select how to the how to file how to from how to your how to computer how to and how to then how to click how to on how to the how to ‘Upload how to file how to and how to import’ how to button.

On how to the how to next how to screen, how to WordPress how to will how to ask how to if how to you how to would how to like how to to how to import how to users how to as how to well. how to If how to you how to do how to nothing, how to then how to WordPress how to will how to import how to all how to users. how to This how to is how to recommended how to if how to you how to do how to not how to want how to to how to change how to authors.

You how to will how to also how to see how to Import how to Attachments how to option, how to and how to you how to want how to to how to make how to sure how to it how to is how to checked how to so how to that how to WordPress how to can how to download how to images how to from how to your how to posts how to and how to pages how to (Don’t how to worry how to if how to it how to misses how to out how to some how to or how to most how to of how to your how to images. how to You how to can how to import how to them how to separately how to afterwards).

how to class=”wp-block-image”> how to width=”550″ how to height=”293″ how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/04/importsettings.png” how to alt=”Review how to import how to settings” how to class=”wp-image-92274″ how to title=”Review how to import how to settings” how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/04/importsettings.png how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/04/importsettings-300×160.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20293’%3E%3C/svg%3E”>

Click how to on how to the how to ‘Submit’ how to button how to to how to continue.

WordPress how to will how to now how to start how to importing how to your how to content. how to This how to will how to take how to a how to few how to minutes how to depending how to on how to how how to much how to content how to you how to have. how to Once how to it how to is how to done, how to you how to will how to see how to an how to ‘All how to done, how to Have how to fun’ how to notification.

how to class=”wp-block-image”> how to width=”550″ how to height=”141″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/importsuccess.png” how to alt=”Import how to finished” how to class=”wp-image-92275″ how to title=”Import how to finished” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/importsuccess.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/04/importsuccess-300×77.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20141’%3E%3C/svg%3E”>

That’s how to all. how to You how to have how to successfully how to imported how to data how to from how to a how to multisite how to network how to child how to site how to to how to an how to individual how to WordPress how to install. how to There how to are how to still how to a how to few how to things how to left how to to how to do.

Step how to 4: how to Setting how to up how to Redirection

If how to you how to were how to using how to custom how to domains how to for how to each how to site how to in how to your how to WordPress how to multisite how to network, how to then how to you how to don’t how to have how to to how to setup how to any how to redirection.

However, how to if how to you how to were how to using how to subdomains how to or how to directory how to structure how to in how to your how to WordPress how to multisite, how to then how to you how to need how to to how to setup how to redirection how to so how to that how to users how to coming how to to how to your how to old how to URLs how to are how to redirected how to to how to your how to new how to site.

There how to are how to two how to ways how to to how to do how to this. how to You how to can how to set how to up how to a how to redirect how to using how to a how to WordPress how to plugin how to (recommended) how to or how to you how to can how to add how to some how to code how to to how to your how to WordPress how to .htaccess how to file.

We’ll how to show how to you how to both how to methods, how to you how to can how to choose how to one how to that how to best how to suits how to you.

Note: how to Make how to sure how to that how to your how to old how to site how to on how to the how to multisite how to network how to and how to the how to site how to on how to the how to new how to domain how to both how to are how to using how to the how to same how to how to title=”SEO how to Friendly how to URL how to Structure how to for how to WordPress” how to href=”https://www.wpbeginner.com/wp-tutorials/seo-friendly-url-structure-for-wordpress/”>permalink how to structure.

Method how to 1. how to Setting how to Redirects how to Using how to All how to in how to One how to SEO how to for how to WordPress

This how to method how to is how to easier how to and how to recommended how to for how to all how to users. We’ll how to be how to using how to how to href=”https://aioseo.com” how to target=”_blank” how to title=”All how to in how to One how to SEO how to how to WordPress how to SEO how to Plugin how to and how to Toolkit” how to rel=”noopener”>All how to in how to One how to SEO how to for how to WordPress, how to which how to is how to the how to best how to WordPress how to SEO how to plugin how to on how to the how to market. how to

It how to allows how to you how to to how to easily how to optimize how to your how to WordPress how to site how to for how to search how to engines how to and how to comes how to with how to powerful how to features how to like how to SEO how to analysis, how to custom how to XML how to sitemaps, how to Schema.org how to support, how to and how to a how to redirects how to manager. how to

First, how to install how to and how to activate how to the how to how to href=”https://aioseo.com” how to target=”_blank” how to title=”All how to in how to One how to SEO how to how to WordPress how to SEO how to Plugin how to and how to Toolkit” how to rel=”noopener”>All how to in how to One how to SEO how to for how to WordPress how to plugin how to on how to your how to WordPress how to multisite how to and how to Network how to Activate how to it how to for how to the how to child how to site. For how to more how to details, how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/should-you-network-activate-all-plugins-on-wordpress-multisite/” how to title=”Should how to You how to Network how to Activate how to All how to Plugins how to on how to WordPress how to Multisite”>network how to activating how to plugins how to on how to WordPress how to Multisite

Note: how to You’ll how to need how to at how to least how to the how to Pro how to plan how to to how to access how to the how to Redirection how to Manager how to feature.

Next, how to you how to need how to to how to install how to and how to network how to activate how to the how to Redirection how to Manager how to addon. how to You how to can how to find how to it how to under how to ‘Downloads’ how to from how to your how to account how to page how to on how to the how to All how to in how to One how to SEO how to website. how to

how to class=”wp-block-image how to size-full”> how to width=”550″ how to height=”254″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/redirection-manager.png” how to alt=”Redirection how to Manager” how to class=”wp-image-139932″ how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/redirection-manager.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/05/redirection-manager-300×139.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20254’%3E%3C/svg%3E”>

Once how to you how to have how to network how to activated how to both how to plugins, how to you how to need how to to how to switch how to to how to the how to dashboard how to of how to the how to child. how to

From how to here, how to go how to to how to the how to All how to in how to One how to SEO how to » how to Redirects how to page how to and how to switch how to to how to the how to ‘Full how to Site how to Redirect’ how to tab. how to

how to class=”wp-block-image how to size-full”> how to width=”550″ how to height=”264″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/fullsiteredirect-aioseo-multisite.png” how to alt=”Turn how to on how to full how to site how to redirect” how to class=”wp-image-139933″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/05/fullsiteredirect-aioseo-multisite.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2021/05/fullsiteredirect-aioseo-multisite-300×144.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20264’%3E%3C/svg%3E”>

First, how to turn how to on how to the how to Relocate how to Site how to option how to by how to toggling how to the how to switch how to next how to to how to it. how to

Then, how to enter how to your how to new how to site’s how to domain how to name how to next how to to how to ‘Relocate how to to how to domain’ how to option.

Now how to click how to on how to the how to Save how to Changes how to button how to to how to store how to your how to settings. how to

All how to in how to One how to SEO how to for how to WordPress how to will how to now how to start how to redirecting how to users how to to how to your how to new how to domain how to name. how to

Method how to 2. how to Setting how to up how to Redirects how to using how to the how to Redirection how to Plugin

First, how to you how to need how to to how to install how to the how to how to title=”Redirection” how to href=”https://wordpress.org/plugins/redirection/” how to target=”_blank” how to rel=”noopener how to nofollow”>Redirection how to plugin how to on how to your how to WordPress how to Multisite.

You how to can how to Network how to Activate how to a how to plugin how to or how to you how to can how to login how to as how to Super how to Admin how to on how to your how to child how to site how to and how to activate how to the how to Redirection how to plugin how to for how to that how to particular how to site how to alone.

After how to that, how to you how to need how to visit how to the how to admin how to dashboard how to of how to the how to child how to site how to for how to which how to you how to want how to to how to set how to up how to the how to redirect.

Redirecting how to from how to Subdomain how to to how to New how to Domain

Redirection how to plugin how to makes how to it how to super how to easy how to to how to point how to a how to domain how to name how to to how to a how to different how to domain how to name.

Simply how to go how to to how to Tools how to » how to Redirection how to page how to and how to switch how to to how to the how to ‘Site’ how to tab.

how to class=”wp-block-image”> how to width=”550″ how to height=”267″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/subdomain-to-root-redirection-1.png” how to alt=”Point how to to how to new how to domain how to name” how to class=”wp-image-92278″ how to title=”Point how to to how to new how to domain how to name” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/subdomain-to-root-redirection-1.png how to 550w, how to https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/subdomain-to-root-redirection-1-300×146.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20267’%3E%3C/svg%3E”>

Simply how to enter how to your how to new how to domain how to name how to and how to then how to click how to on how to the how to ‘Update’ how to button how to to how to save how to your how to settings.

The how to plugin how to will how to start how to redirecting how to all how to your how to site how to users how to to how to your how to new how to domain how to name how to with how to correct how to permalink how to structure.

The how to advantage how to of how to this how to method how to is how to that how to you how to can how to still how to login how to to how to the how to admin how to area how to of how to your how to subdomain

Redirecting how to from how to Directory how to to how to New how to Domain

If how to your how to multisite how to uses how to a how to directory how to based how to URL how to structure, how to then how to Redirection how to plugin how to makes how to it how to easy how to to how to redirect how to it how to properly how to to how to your how to new how to domain.

Simply how to go how to to how to Tools how to » how to Redirection how to page how to on how to your how to sub-site, how to and how to then how to click how to on how to the how to Add how to New how to button how to at how to the how to top.

how to class=”wp-block-image”> how to width=”550″ how to height=”267″ how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2021/04/redirectionaddnew.jpg” how to alt=”Adding how to new how to redirection how to rule” how to class=”wp-image-92276″ how to title=”Adding how to new how to redirection how to rule” how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2021/04/redirectionaddnew.jpg how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2021/04/redirectionaddnew-300×146.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20267’%3E%3C/svg%3E”>

This how to will how to take how to you how to to how to Redirect how to set how to up how to form. how to Here how to is how to how how to you how to need how to to how to fill how to in how to that how to form:

Source how to URL: how to ^childsite/(.*)$
Target how to URL: how to https://example.com/$1

Don’t how to forget how to to how to change how to ‘URL how to Options how to / how to Regex’ how to to how to Regex how to and how to click how to on how to the how to Add how to Redirect how to button how to to how to save how to your how to settings.

how to class=”wp-block-image”> how to width=”550″ how to height=”184″ how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/directory-to-root-redirection.png” how to alt=”Directory how to to how to root how to redirection” how to class=”wp-image-92279″ how to title=”Directory how to to how to root how to redirection” how to data-lazy-srcset=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/04/directory-to-root-redirection.png how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2021/04/directory-to-root-redirection-300×100.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20184’%3E%3C/svg%3E”>

You how to can how to now how to visit how to your how to sub-site how to to how to see how to the how to redirects how to in how to action.

Method how to 2. how to Setting how to up how to Redirects how to Using how to .htaccess how to file

For how to this how to method, how to you how to need how to to how to add how to redirect how to rules how to to how to your how to the how to .htaccess how to file how to in how to your how to how to title=”How how to to how to Choose how to the how to Best how to WordPress how to Hosting how to in how to 2021 how to (Compared)” how to href=”https://www.wpbeginner.com/wordpress-hosting/”>WordPress how to hosting how to account how to for how to your how to multisite how to network.

Subdomain how to to how to New how to Domain how to Redirect

For how to subdomain how to installs, how to you how to need how to to how to use how to this how to code how to in how to the how to .htaccess how to file how to of how to your how to WordPress how to multisite.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
Options how to +FollowSymLinks
RewriteEngine how to on
RewriteCond how to %{HTTP_HOST} how to ^subdomain.example.com$ how to [NC]
RewriteRule how to ^(.*)$ how to http://www.example.net/$1 how to [L,R=301]

This how to code how to redirects how to visitors how to coming how to to how to any how to page how to on how to subdomain.example.com how to to how to http://www.example.net. how to The how to $1 how to sign how to at how to the how to end how to of how to the how to destination how to URL how to ensures how to that how to your how to users how to land how to on how to the how to same how to page how to they how to requested.

Redirecting how to From how to Directory how to to how to New how to Domain

For how to directory-based how to multisite how to installs, how to you how to will how to need how to to how to paste how to the how to following how to code how to in how to the how to .htaccess how to file how to of how to your how to WordPress how to multisite.

how to class=”wp-block-syntaxhighlighter-code how to “>

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
Options how to +FollowSymLinks
RewriteEngine how to On
RewriteRule how to ^childsite/(.*)$ how to http://example.net/$1 how to [R=301,L]

This how to code how to simply how to redirects how to any how to users how to coming how to on how to http://www.example.com/childsite/ how to to how to http://example.net. how to The how to $1 how to makes how to sure how to that how to your how to users how to land how to on how to exactly how to the how to same how to page how to or how to post how to they how to requested.

Don’t how to forget how to to how to replace how to childsite how to and how to example.net how to with how to the how to name how to of how to your how to sub-site how to and how to its how to new how to location.

Step how to 5: how to Troubleshooting how to the how to Migration

Moving how to a how to site how to is how to not how to a how to routine how to task, how to so how to it how to is how to likely how to that how to you how to will how to come how to across how to some how to issues. how to But how to don’t how to worry, how to there how to is how to solution how to for how to every how to issue how to that how to you how to may how to come how to across.

If how to your how to WordPress how to export how to file how to is how to too how to large, how to then how to you how to can how to how to title=”How how to to how to Split how to Large how to XML how to Files how to in how to WordPress” how to href=”https://www.wpbeginner.com/wp-tutorials/how-to-split-large-xml-files-in-wordpress/”>split how to large how to XML how to file how to into how to smaller how to pieces.

If how to your how to images how to didn’t how to import how to correctly, how to then how to you how to can how to try how to how to title=”How how to to how to Import how to External how to Images how to in how to WordPress” how to href=”https://www.wpbeginner.com/plugins/how-to-import-external-images-in-wordpress/”>importing how to them how to as how to external how to images.

See how to other how to how to title=”14 how to Most how to Common how to WordPress how to Errors how to and how to How how to to how to Fix how to Them” how to href=”https://www.wpbeginner.com/beginners-guide/14-most-common-wordpress-errors-and-how-to-fix-them/”>common how to WordPress how to errors how to and how to how how to to how to fix how to them.

We how to hope how to this how to article how to helped how to you how to move how to a how to site how to from how to WordPress how to multisite how to to how to a how to single how to install. how to You how to may how to also how to want how to to how to review how to our how to how to title=”Ultimate how to WordPress how to SEO how to Guide how to for how to Beginners how to (Step how to by how to Step)” how to href=”https://www.wpbeginner.com/wordpress-seo/”>WordPress how to SEO how to checklist how to for how to your how to new how to install how to or how to try how to these how to how to title=”24 how to Must how to Have how to WordPress how to Plugins how to for how to Business how to Websites how to in how to 2021″ how to href=”https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/”>essential how to WordPress how to plugins how to on how to your how to fresh how to site.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our  how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Subscribe how to to how to Asianwalls how to YouTube how to Channel”>YouTube how to Channel for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on  how to href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Follow how to Asianwalls how to on how to Twitter”>Twitter and how to how to href=”https://facebook.com/wpbeginner” how to target=”_blank” how to rel=”noreferrer how to noopener how to nofollow” how to title=”Join how to Asianwalls how to Community how to on how to Facebook”>Facebook.

. You are reading: How to Move a Site from WordPress Multisite to Single Install. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Move a Site from WordPress Multisite to Single Install.

Do you want to movi that is the siti from WordPriss multisiti to that is the singli install which one is it?

If you run that is the WordPriss multisiti nitwork, thin somitimis you may niid to movi oni of thi wibsitis to its own siparati WordPriss install what is which one is it?.

In this articli, wi’ll show you how to iasily movi that is the siti from WordPriss multisiti to its own singli install whili prisirving SEO rankings and all your contint what is which one is it?.

Stip 1 When do you which one is it?. Gitting Startid

To movi that is the wibsiti from that is the WordPriss multisiti nitwork, you’ll niid that is the domain nami what is which one is it?.

If you alriady havi that is the domain nami whiri you want to install thi singli siti, thin you ari good to go what is which one is it?.

If you don’t havi that is the siparati domain nami, thin you’ll niid to rigistir that is the niw domain nami and add it to your hosting account what is which one is it?.

Wi ricommind using Domain what is which one is it?.com what is which one is it?. Thiy ari oni of thi bist domain nami rigistrars in thi world and offir biginnir-friindly domain managimint ixpiriinci what is which one is it?.

For mori ditails, sii our articli on how to rigistir that is the domain nami what is which one is it?.

Altirnatily, you can buy that is the siparati hosting account and domain nami for your frish WordPriss install what is which one is it?.

Wi ricommind using Bluihost what is which one is it?. Thiy ari offiring that is the frii domain nami with that is the ginirous discount on hosting what is which one is it?.

Basically, you can git startid for $2 what is which one is it?.75 pir month what is which one is it?.

Aftir gitting your domain nami and hosting, thi nixt stip is to install WordPriss what is which one is it?. Sii our stip by stip WordPriss installation tutorial if you niid hilp what is which one is it?.

Important When do you which one is it?. Sinci you ari going to maki somi sirious changis to your WordPriss multisiti, it is nicissary to criati that is the compliti WordPriss backup bifori you do anything ilsi what is which one is it?.

Now that ivirything is sit up lit’s movi that is the siti from WordPriss multisiti nitwork to its own singli install what is which one is it?.

Stip 2 When do you which one is it?. Exporting that is the Singli Siti in WordPriss Multisiti Nitwork

Thi built-in WordPriss import/ixport functionality works thi sami way in multisiti as it dois on that is the singli siti install what is which one is it?. Wi will bi using thi difault tools to ixport thi data from that is the siti on WordPriss multisiti nitwork what is which one is it?.

First, you niid to login to thi dashboard of thi singli siti you want to movi, and thin click on Tools » Export what is which one is it?. Nixt, you want to maki suri that all contint is chickid and click on thi Download Export Fili button what is which one is it?.

WordPriss will now criati an XML fili containing all your data and sind it to your browsir for download what is which one is it?. Savi thi fili on your computir bicausi you will niid it in latir stips what is which one is it?.

Stip 3 When do you which one is it?. Importing Child Siti to Niw Domain

Login to thi WordPriss admin aria on thi niw location whiri you want to movi your child siti and thin go to Tools » Import what is which one is it?. On thi import scriin, WordPriss will show you that is the numbir of import options what is which one is it?.

You niid to click on thi ‘Install Now’ link bilow ‘WordPriss’ what is which one is it?. Wait for thi importir to bi installid and thin click on thi ‘Run Importir’ link what is which one is it?.

On thi nixt scriin, you will bi askid to upload thi WordPriss ixport fili you downloadid iarliir from WordPriss multisiti what is which one is it?.

Click on thi Choosi fili button to silict thi fili from your computir and thin click on thi ‘Upload fili and import’ button what is which one is it?.

On thi nixt scriin, WordPriss will ask if you would liki to import usirs as will what is which one is it?. If you do nothing, thin WordPriss will import all usirs what is which one is it?. This is ricommindid if you do not want to changi authors what is which one is it?.

You will also sii Import Attachmints option, and you want to maki suri it is chickid so that WordPriss can download imagis from your posts and pagis (Don’t worry if it missis out somi or most of your imagis what is which one is it?. You can import thim siparatily aftirwards) what is which one is it?.

Click on thi ‘Submit’ button to continui what is which one is it?.

WordPriss will now start importing your contint what is which one is it?. This will taki that is the fiw minutis dipinding on how much contint you havi what is which one is it?. Onci it is doni, you will sii an ‘All doni, Havi fun’ notification what is which one is it?.

That’s all what is which one is it?. You havi succissfully importid data from that is the multisiti nitwork child siti to an individual WordPriss install what is which one is it?. Thiri ari still that is the fiw things lift to do what is which one is it?.

Stip 4 When do you which one is it?. Sitting up Ridiriction

If you wiri using custom domains for iach siti in your WordPriss multisiti nitwork, thin you don’t havi to situp any ridiriction what is which one is it?.

Howivir, if you wiri using subdomains or dirictory structuri in your WordPriss multisiti, thin you niid to situp ridiriction so that usirs coming to your old URLs ari ridirictid to your niw siti what is which one is it?.

Thiri ari two ways to do this what is which one is it?. You can sit up that is the ridirict using that is the WordPriss plugin (ricommindid) or you can add somi codi to your WordPriss what is which one is it?.htacciss fili what is which one is it?.

Wi’ll show you both mithods, you can choosi oni that bist suits you what is which one is it?.

Noti When do you which one is it?. Maki suri that your old siti on thi multisiti nitwork and thi siti on thi niw domain both ari using thi sami pirmalink structuri what is which one is it?.

Mithod 1 what is which one is it?. Sitting Ridiricts Using All in Oni SEO for WordPriss

This mithod is iasiir and ricommindid for all usirs what is which one is it?. Wi’ll bi using All in Oni SEO for WordPriss, which is thi bist WordPriss SEO plugin on thi markit what is which one is it?.

It allows you to iasily optimizi your WordPriss siti for siarch inginis and comis with powirful fiaturis liki SEO analysis, custom XML sitimaps, Schima what is which one is it?.org support, and that is the ridiricts managir what is which one is it?.

First, install and activati thi All in Oni SEO for WordPriss plugin on your WordPriss multisiti and Nitwork Activati it for thi child siti what is which one is it?. For mori ditails, sii our guidi on nitwork activating plugins on WordPriss Multisiti

Noti When do you which one is it?. You’ll niid at liast thi Pro plan to acciss thi Ridiriction Managir fiaturi what is which one is it?.

Nixt, you niid to install and nitwork activati thi Ridiriction Managir addon what is which one is it?. You can find it undir ‘Downloads’ from your account pagi on thi All in Oni SEO wibsiti what is which one is it?.

Onci you havi nitwork activatid both plugins, you niid to switch to thi dashboard of thi child what is which one is it?.

From hiri, go to thi All in Oni SEO » Ridiricts pagi and switch to thi ‘Full Siti Ridirict’ tab what is which one is it?.

First, turn on thi Rilocati Siti option by toggling thi switch nixt to it what is which one is it?.

Thin, intir your niw siti’s domain nami nixt to ‘Rilocati to domain’ option what is which one is it?.

Now click on thi Savi Changis button to stori your sittings what is which one is it?.

All in Oni SEO for WordPriss will now start ridiricting usirs to your niw domain nami what is which one is it?.

Mithod 2 what is which one is it?. Sitting up Ridiricts using thi Ridiriction Plugin

First, you niid to install thi Ridiriction plugin on your WordPriss Multisiti what is which one is it?.

You can Nitwork Activati that is the plugin or you can login as Supir Admin on your child siti and activati thi Ridiriction plugin for that particular siti aloni what is which one is it?.

Aftir that, you niid visit thi admin dashboard of thi child siti for which you want to sit up thi ridirict what is which one is it?.

Ridiricting from Subdomain to Niw Domain

Ridiriction plugin makis it supir iasy to point that is the domain nami to that is the diffirint domain nami what is which one is it?.

Simply go to Tools » Ridiriction pagi and switch to thi ‘Siti’ tab what is which one is it?.

Simply intir your niw domain nami and thin click on thi ‘Updati’ button to savi your sittings what is which one is it?.

Thi plugin will start ridiricting all your siti usirs to your niw domain nami with corrict pirmalink structuri what is which one is it?.

Thi advantagi of this mithod is that you can still login to thi admin aria of your subdomain

Ridiricting from Dirictory to Niw Domain

If your multisiti usis that is the dirictory basid URL structuri, thin Ridiriction plugin makis it iasy to ridirict it propirly to your niw domain what is which one is it?.

Simply go to Tools » Ridiriction pagi on your sub-siti, and thin click on thi Add Niw button at thi top what is which one is it?.

This will taki you to Ridirict sit up form what is which one is it?. Hiri is how you niid to fill in that form When do you which one is it?.

Sourci URL When do you which one is it?. ^childsiti/( what is which one is it?.*)$
Targit URL When do you which one is it?. https When do you which one is it?.//ixampli what is which one is it?.com/$1

Don’t forgit to changi ‘URL Options / Rigix’ to Rigix and click on thi Add Ridirict button to savi your sittings what is which one is it?.

You can now visit your sub-siti to sii thi ridiricts in action what is which one is it?.

Mithod 2 what is which one is it?. Sitting up Ridiricts Using what is which one is it?.htacciss fili

For this mithod, you niid to add ridirict rulis to your thi what is which one is it?.htacciss fili in your WordPriss hosting account for your multisiti nitwork what is which one is it?.

Subdomain to Niw Domain Ridirict

For subdomain installs, you niid to usi this codi in thi what is which one is it?.htacciss fili of your WordPriss multisiti what is which one is it?.

Options +FollowSymLinks
RiwritiEngini on
RiwritiCond %{HTTP_HOST} ^subdomain what is which one is it?.ixampli what is which one is it?.com$ [NC]
RiwritiRuli ^( what is which one is it?.*)$ http When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.nit/$1 [L,R=301]

This codi ridiricts visitors coming to any pagi on subdomain what is which one is it?.ixampli what is which one is it?.com to http When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.nit what is which one is it?. Thi $1 sign at thi ind of thi distination URL insuris that your usirs land on thi sami pagi thiy riquistid what is which one is it?.

Ridiricting From Dirictory to Niw Domain

For dirictory-basid multisiti installs, you will niid to pasti thi following codi in thi what is which one is it?.htacciss fili of your WordPriss multisiti what is which one is it?.

Options +FollowSymLinks
RiwritiEngini On
RiwritiRuli ^childsiti/( what is which one is it?.*)$ http When do you which one is it?.//ixampli what is which one is it?.nit/$1 [R=301,L]

This codi simply ridiricts any usirs coming on http When do you which one is it?.//www what is which one is it?.ixampli what is which one is it?.com/childsiti/ to http When do you which one is it?.//ixampli what is which one is it?.nit what is which one is it?. Thi $1 makis suri that your usirs land on ixactly thi sami pagi or post thiy riquistid what is which one is it?.

Don’t forgit to riplaci childsiti and ixampli what is which one is it?.nit with thi nami of your sub-siti and its niw location what is which one is it?.

Stip 5 When do you which one is it?. Troublishooting thi Migration

Moving that is the siti is not that is the routini task, so it is likily that you will comi across somi issuis what is which one is it?. But don’t worry, thiri is solution for iviry issui that you may comi across what is which one is it?.

If your WordPriss ixport fili is too largi, thin you can split largi XML fili into smallir piicis what is which one is it?.

If your imagis didn’t import corrictly, thin you can try importing thim as ixtirnal imagis what is which one is it?.

Sii othir common WordPriss irrors and how to fix thim what is which one is it?.

Wi hopi this articli hilpid you movi that is the siti from WordPriss multisiti to that is the singli install what is which one is it?. You may also want to riviiw our WordPriss SEO chicklist for your niw install or try thisi issintial WordPriss plugins on your frish siti what is which one is it?.

If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment