WordPress 3.0 Multisite With Multiple Domains Setup

Development

WordPress 3.0 multisites lets you easily publish multiple sites, on multiple domains, within one installation.  This is a time-saving option for those of us who need to manage multiple separate domains running WordPress, but it does take a little knowledge and file access to set up, and at the moment isn’t for anyone who doesn’t consider themselves technically proficient.

Editor’s Note: Please note that for many users the excellent WordPress MU Domain Mapping Plugin is going to be a better solution. Our solution is really for expert users only.

You will need to be able to modify your vhosts file in order to do this, but once done you will have a very flexible and powerful server.

This article is written for 3.0 alpha, as of the current build on 19th March 2010.

Multi sites mode

  1. Install WordPress 3.0 and install as a normal WordPress.
  2. Add define(‘WP_ALLOW_MULTISITE’, true); near the top of wp-config.php
  3. Log into the admin go to the tools/Nertwork menu.
  4. If it asks you to deactivate all plug-ins do so otherwise go straight ahead and set up multi sites as sub-domains and fill in the other details as needed as needed.
  5. Make a note of the changes needed to wp-config.php and .htaccess and make the changes.
  6. You should now be in multi-site mode.

Adding a new domain

  1. Now we’re in multisite mode login as admin go to super admin/sites
  2. Add a new site – the address can be anything you like just make it unique and make it something you can remember so we can find it easier in the db.
  3. Make sure your domain is pointing at the server if not do so and wait for it to propagate.
  4. Add Vhost alias to the root domain. So if in the Vhost file you have ServerName mywordpres3root.com you would add ServerAlias mynewwordpress.com beneath it.  Alternatively, you can use a wildcard here, but in our implementations there are good reasons why we prefer to specify the host aliases.
  5. Open up the db for editing and add a new row to wp_site table
    1. site_id, domain and path.
      1. site_id, will be a new unique id, remember it
      2. domain, should be set to the new domain name added above.
      3. path should be /
  6. Change the row in wp_blogs that matches your new site and make a note of the blog_id.
    1. Change site_id to the new site_id created above.
    2. Change domain to our new domain name.
  7. Open up wp_[blog_id]_options table.
    1. Change siteurl to the new domain name.
    2. Change home to match the new domain name.
    3. Change the fileupload_url to match the new domain.
  8. Your new site should now be ready, you’ll need to go in and set all the options for the domain now. If you wanted a clone of the root sites options you could copy all the rows in wp_sitemeta with a site_id matching the site you wanted to clone and just change the site_id to the new site.

The instructions above are given without any guarantee – use at your own risk, especially if converting your site from single site to multisites.  If you have any feedback or better approaches then do let us know in the comments below.

22 responses to “WordPress 3.0 Multisite With Multiple Domains Setup

  1. Thank you a lot,

    this is the only tutorial explaining proper multi domains with Wordpres MU !!

    I confirm Chris comment, on wordpress 3.4.1 one have to comment out this line in wp-config

    define( ‘DOMAIN_CURRENT_SITE’, ‘www.yourdomainhere.com’ );

    1. Actually I’m wrong, commenting this line has no effect in my case (wp mu 3.4.1) but anyway every newly created website is easily accessed by the drop-down menu of the admin bar. So it works for me without a glitch…

      Thanks again for your article, it made my day !!

  2. Great write up on the wordpress mu multiple domain mapping btw.I just noticed your phone number area code,turns out i was reading this in the building across from you in the ADA! i should of give you guys a wave from my studio,small world.

    1. Very small world! You should come along to our SWIG events, you know…

  3. I just followed the steps on wp 3.3.1 and sites worked properly. But when i go to “My Sites > Network Admin > Sites” form the backend it does not show the new site added.

    So how do I edit the new site just added ?

  4. Will this configuration prevent duplicate content labelling by serach engines like google and adversely effect my site rankings?

    1. Erm – that’s not really relevant to the feature. Duplicate content is duplicate content, so that’ll always be a problem – running multiple domains in this way is a different thing.

  5. Quick update for WordPress 3.3.1 –

    I followed the steps in the original post, but was only able to load the home page of my secondary domain. As soon as I navigated to a sub-page, it would redirect back to the primary (original) domain, and load the wrong site. My permalink structure is as follows: ‘/page-name-here/’, (not the WP default of ‘/?p=xyz’)

    To solve this I had to make a change to the wp-config.php.

    Most people will have the following line in their wp-config.php file:

    define( ‘DOMAIN_CURRENT_SITE’, ‘www.yourdomainhere.com’ );

    For the steps above to work, I found that this line needs to be commented out. If left in, it will override the database check WP does when loading the site and you’ll always be redirected back to the DOMAIN_CURRENT_SITE. I don’t know if this wasn’t part of WordPress 3.0, but it certainly drove me crazy in 3.3.1

    Just thought I’d share in case anybody else if having this problem.

    1. thank you,
      work well,
      I delete this line define(‘DOMAIN_CURRENT_SITE’, ‘127.0.0.1’); in wp-config and it’s perfect

  6. I have query about multiple website function. I want to change primary website domain with secondary website domain.

    Is it possible or not.

  7. Excellent tutorial, thank you! i have used last year

  8. when i change .htaccess file it should be error display of site that internal server error what i do for that..

  9. Done all the changes requested. Everything appears to be working, but permalinks don’t

  10. In network admin I only see the main site under ‘Sites’ and not the 3 others? In addition I am missing plugins from my child sites and the theme that I have added in Network admin is not listed under themes in the child.

    Have I done something blatently wrong?

Leave a Reply to Asif Ali Siddiqui Cancel reply

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