System Status
Buy Now
  • Email & Apps
  • Office 365
Login
  • MyRackspace Portal
  • Cloud Control Panel
  • Rackspace Webmail Login
  • Cloud Office Control Panel
  • Support Home
  • How-To
  • Developer Documentation
  •  Blogs 
    • Expert Insights Tech Blog
    • Rackspace Blog
    • Solve: Thought Leadership

Support Network

End-to-End Multicloud Solutions.   Solving Together.â„¢   Learn more at Rackspace.com

How–To Home

Cloud Servers

  • Introduction
  • FAQ
  • All Articles

Install WordPress multi-site

Last updated on:  2021-04-06

Authored by:  Alfonso Murillo


This article explains how to configure WordPress multi-site, enabling you to build a network of websites in your WordPress installation.

Important: Rackspace Support does not support WordPress configuration. This article provides steps as a best-effort solution, but your developers should review them thoroughly before implementing them to prevent unexpected downtime.

Prerequisites

  • A WordPress installation
  • Permalinks activated so that your URLs look like http://example.com/my-page instead of http://example.com/?p=1654
  • Deactivated plugins
  • Backup of a WordPress installation

Modify wp-config.php

  1. Open the wp-config.php file on your server. Default location is /var/www/html/.
  2. Add the following line above the / That’s all, stop editing! Happy blogging. / ** comment:
define('WP_ALLOW_multi-site', true);

Network setup

  1. Enter the administrator dashboard through http://YOUR_SITE/wp-config.php.

  2. Navigate to Tools > Network Setup.

    Note: Depending on your installation, you can choose between using subdomains or subdirectories for your different sites. A subdomain is similar to site1.example.com and site2.example.com, while a subdirectory is similar to example.com/site1 and example.com/site2.

  3. In Network Title, enter a network name and the network administrator email.

  4. Click Install.

Configuration and .htaccess files

  1. Open the wp.config.php file for editing.

  2. Place the following code after the line reading ** /* That’s all, stop editing! Happy blogging. */ ** comment:

    define('multi-site', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', 'website');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    
  3. Save your changes.

  4. Open /var/www/html.htaccess for editing.

  5. Replace all content in the file with the following code:

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]

Network Administrator menu

Performing the previous steps completes the multi-site installation. On the top left corner, you should see a tab called My Sites, which includes a Network Admin menu with the following tabs:

  • Dashboard: Add new users and sites to the network.
  • Sites: Manage all the sites on your network.
    • Add new: Add new sites and define the site address (URL), title, language, and administrator email.
  • Users: Manage all the users of your network.
  • Themes: Install, uninstall, and activate themes for the network.
  • Plugins: Only the super admin can use the plugins administrator to install new plugins. To allow the site admin to activate or deactivate them, the super admin should select the Plugins checkbox on the Enable administration menus section of the Settings tab.
  • Settings: Manage the basic settings.

Conclusion

With WordPress multi-site, you can manage different sites under the same domain. If you choose to use subdomains, consider using a wildcard certificate to cover all the sites.

Share this information:

©2020 Rackspace US, Inc.

Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License

See license specifics and DISCLAIMER

About Rackspace
  • About
  • Customer Stories
  • Events
  • Programs
Blogs
  • The Rackspace Blog
  • Expert Insights Tech Blog
  • Solve: Thought Leadership
  • News
  • Contact Information
  • Legal
  • Careers
Site Information
  • Style Guide for Technical Content
  • Trademarks
  • Privacy Statement
  • Website Terms
Support Network
  • Support Network Home
  • Rackspace How-To
  • API Documentation
  • Developer Center
  • ©2020 Rackspace US, Inc.