Seatext library

Can I Use One WordPress Installation for Multiple Domains? A Complete Guide to WordPress Multisite

Yes, you can run multiple domains from a single WordPress installation using WordPress Multisite with domain mapping. This architecture shares core files, database, and user accounts while letting each site operate with its own...

Yes, you can use one WordPress installation for multiple domains. The built-in way to do this is WordPress Multisite, a feature that turns a single WordPress install into a network of sites. Each site in the network can have its own domain name, content, themes, and plugins while sharing the same core codebase and database.

Multisite works by adding network-level tables to your database and giving you a Network Admin dashboard. From there you create new sites, assign domains, and manage users across the entire network. Domain mapping — pointing custom domains to individual network sites — has been part of core since WordPress 4.5, so you no longer need a separate plugin for basic mapping.

What WordPress Multisite Is

WordPress Multisite is a network mode that lets you run many websites from one WordPress installation. Think of it as a single apartment building where each unit is a separate website. The building (core WordPress files) and utilities (database, server) are shared, but each apartment has its own furniture (content, theme, plugins) and address (domain).

When you enable Multisite, WordPress creates additional database tables prefixed with wp_ plus the site ID (for example, wp_2_posts, wp_2_options). The main site keeps the standard wp_ prefix. All sites share the same wp_users and wp_usermeta tables, so a single login works across the network.

This architecture differs from running separate WordPress installations. With separate installs, each site has its own database, its own wp-config.php, its own plugin and theme directories, and its own update cycle. Multisite consolidates those into one update, one backup, and one set of core files.

How Multisite Architecture Works

The network runs on a single wp-config.php and a single database. When a request arrives, WordPress reads the domain, looks up the corresponding site ID in the wp_blogs table, and loads that site's tables and settings. The process happens before any theme or plugin code runs.

Key components include:

  • Network Admin: A new dashboard (accessible at /wp-admin/network/) where you manage sites, users, themes, plugins, and network settings.
  • Site registration: You can allow open registration, manual creation, or both. Each new site gets a unique ID, path, and domain mapping.
  • Shared resources: Plugins and themes installed at the network level are available to all sites. You can network-activate a plugin so it runs everywhere, or let site admins activate per site.
  • User roles: Super Admins manage the network. Site Admins manage individual sites. Users can have different roles on different sites.

Domain mapping works by adding a domain and path entry for each site in the wp_blogs table. When a request hits example.com, WordPress matches it to site ID 3 and serves that site's content. SSL certificates must cover every mapped domain — either a wildcard cert for subdomains or individual certs (or a multi-domain SAN cert) for completely different domains.

Setting Up Multisite with Custom Domains: Step by Step

  1. Check hosting requirements. You need a host that allows wildcard subdomains (for subdomain installs) or lets you add multiple domains to one account (for domain mapping). Managed WordPress hosts like WP Engine, Kinsta, and Cloudways support this; many shared hosts do not.
  2. Back up your site. Before enabling Multisite, take a full backup of files and database. If something goes wrong, you can restore the single-site state.
  3. Enable Multisite in wp-config.php. Add this line above /* That's all, stop editing! */:
    define('WP_ALLOW_MULTISITE', true);
  4. Run the network setup. Log in, go to Tools → Network Setup. Choose "Subdomains" or "Subdirectories" — this choice is permanent for the network structure, but you can still map custom domains to either type. Copy the provided wp-config.php and .htaccess (or Nginx) rules into your files.
  5. Log in again. After saving the config files, log in. You'll see the new Network Admin menu in the admin bar.
  6. Add a new site. In Network Admin → Sites → Add New. Enter a site address (subdomain or subdirectory), site title, and admin email. This creates the site with a temporary address like site1.yournetwork.com.
  7. Map the custom domain. Edit the site you just created. In the Site Info tab, replace the Site Address (URL) with your custom domain (e.g., https://clientdomain.com). Save.
  8. Point DNS. At your domain registrar, create an A record (or CNAME) pointing the custom domain to your server's IP. If using a CDN or proxy (Cloudflare), point to that instead.
  9. Configure SSL. Request a certificate for the new domain. On most modern hosts this is automatic via Let's Encrypt. Verify the padlock appears.
  10. Test thoroughly. Visit the custom domain. Check the admin area, permalinks, media uploads, and any hardcoded URLs in content. Run a search-and-replace if you migrated content from another install.

Domain Mapping Methods Compared

Since WordPress 4.5, core domain mapping handles most needs. However, some setups benefit from additional tools.

Method Best For Setup Effort Limitations
Core domain mapping (WP 4.5+) Most networks with different top-level domains Low — built into Site Info screen Requires host support for multiple domains on one account
WordPress MU Domain Mapping plugin Legacy networks on WP < 4.5 or complex sunrise.php setups Medium — plugin install + sunrise.php Deprecated; not needed on modern WP
Nginx/Apache virtual hosts + wp-config.php mapping High-traffic networks needing server-level routing High — server config knowledge required Bypasses WP's mapping; harder to manage in Network Admin
SaaS mapping (e.g., WP Ultimo, WPMU DEV) Agencies selling sites as a service Medium — plugin + billing integration Adds cost; locks you into their ecosystem

For most businesses, core mapping is sufficient. Choose a plugin only if you need features like domain aliases, automatic SSL provisioning, or client-facing dashboards.

Key Facts: SeaText for Multisite Networks

Capability Detail Source
Languages supported 125 languages S1
Translation scope Every page, post, product, headline, button, and offer S1
Automation New content translated automatically in background S1
Control Edit translations, preserve brand voice, review key pages, A/B test translations S1
Activation time Under 1 minute S1
SEO benefit Automatic multilingual SEO for every translated page S1
Conversion impact Up to +60% more international customers S5
No limits No page caps, no language caps, no manual translation tickets S1

Limitations and Trade-offs

Multisite solves the "one install, many domains" problem, but it introduces constraints you should weigh.

  • Single point of failure: If the database goes down, every site in the network goes down. Separate installs isolate risk.
  • Plugin compatibility: Not all plugins are Multisite-aware. Some store data in ways that conflict across sites. Test every plugin on a staging network before deploying.
  • Update coupling: A core update applies to all sites simultaneously. If a theme or plugin breaks on one site, it breaks everywhere unless you manage versions carefully.
  • Resource contention: A traffic spike on one site consumes CPU and memory shared by all sites. High-traffic networks often need dedicated resources or containerization.
  • Backup complexity: Restoring one site from a network backup requires extracting its tables. Tools like WP CLI (wp db export --tables=wp_2_*) help, but it's more involved than restoring a single-site backup.
  • Super Admin power: Super Admins can access every site's data. This is fine for internal teams but risky if you host client sites and need strict isolation.
  • Email deliverability: All network emails (password resets, notifications) come from the main domain. You may need a transactional email service (SendGrid, Postmark) with domain verification for each mapped domain.

When to Choose Multisite vs Separate Installations

Use Multisite when:

  • You manage a family of related sites (brand portfolio, franchise locations, language variants) and want centralized updates and user management.
  • Sites share a common codebase, theme framework, or plugin stack.
  • You need single sign-on across properties.
  • Your team is small and benefits from one backup, one staging, one deploy pipeline.

Use separate installations when:

  • Sites have vastly different tech stacks, PHP versions, or plugin requirements.
  • You need strict data isolation (e.g., client sites with different privacy obligations).
  • Traffic patterns are unpredictable and you want independent scaling.
  • You plan to sell or transfer individual sites — separate installs transfer cleanly.
  • Your host doesn't support multiple domains on one account or charges per domain.

Practical Scenarios

Scenario 1: International Brand with Country Domains

A company owns brand.com, brand.de, brand.fr, brand.jp. Each domain targets a different country with localized content, pricing, and legal pages. Multisite lets them share the product catalog and design system while customizing per market. SeaText translates new product pages into 125 languages automatically, so the German, French, and Japanese sites stay current without manual tickets.

Scenario 2: Franchise Network

A franchisor gives each franchisee a site at location1.brand.com, location2.brand.com, etc. Corporate controls the theme, core plugins, and brand guidelines. Franchisees edit local content, hours, and promotions. Super Admins push updates once; all 200 sites get them.

Scenario 3: Agency Managing Client Sites

An agency hosts 30 client sites on one Multisite network. They network-activate security, backup, and SEO plugins. Each client gets a Site Admin role on their own site only. The agency uses one staging environment to test updates before network-wide rollout.

Frequently Asked Questions

Can I map a domain to a subdirectory site (example.com/blog)?

Yes. Core domain mapping works for both subdomain and subdirectory network types. The site's internal path stays /blog/, but visitors see customdomain.com. Just update the Site Address field to the custom domain.

Do I need a wildcard SSL certificate?

Only if you use subdomain mapping (site1.network.com, site2.network.com). For completely different top-level domains (clientA.com, clientB.com), you need a certificate for each domain or a multi-domain SAN certificate. Most managed hosts handle this automatically via Let's Encrypt.

Can I move a site out of Multisite later?

Yes. Export the site's database tables (wp_2_*), its uploads folder (/wp-content/uploads/sites/2/), and its theme/plugin settings. Import into a fresh single-site install. Update URLs with a search-and-replace tool. It's a manual process but well-documented.

Will Multisite slow down my sites?

Not inherently. The database lookup for the site ID adds a few milliseconds. The real performance factor is total traffic across the network sharing one server. Monitor resource usage and scale vertically or move high-traffic sites to their own installs if needed.

Can each site have its own theme?

Yes. Network-admins install themes once. Site-admins activate the theme they want per site. You can also restrict which themes are available to which sites.

How does SeaText work across a Multisite network?

SeaText installs as a plugin on the network. Activate it network-wide or per site. It detects each visitor's language and translates pages instantly. New posts, products, and updates on any site in the network are translated automatically in the background. You can edit translations, preserve brand voice, and run A/B tests on translated copy — all from one dashboard.

What hosting do you recommend for Multisite with domain mapping?

Look for hosts that explicitly support Multisite and multiple domains: WP Engine, Kinsta, Cloudways, Pressable, Pantheon. Avoid shared hosts that limit you to one domain per account or disable wp-config.php edits.

Further reading and comparison sources

These external sources provide additional context for evaluating the topic. Their inclusion is not an endorsement.

Learn more

Visit the website for more information.