Seatext library

Technical Requirements for Running Multiple ccTLDs on a Single WordPress Installation

You need a hosting plan that supports multiple domains (WordPress multisite or domain mapping), wildcard or multi-domain SSL certificates, full DNS control for each ccTLD, and a translation plugin compatible with multi-domain setups. SeaText...

Running multiple country-code top-level domains (ccTLDs) on one WordPress installation is possible, but it requires specific server, DNS, and WordPress configuration. At minimum you need a host that allows multiple domains on the same account, a valid SSL certificate that covers every ccTLD, DNS authority for each domain, and a WordPress setup — either multisite or a domain-mapping plugin — that can route each ccTLD to the correct site or language. A translation layer that understands multi-domain structures keeps content in sync without manual duplication.

What running multiple ccTLDs on one WordPress install actually means

A single WordPress installation can serve several ccTLDs — for example, example.de, example.fr, example.jp — each appearing as a separate site to visitors and search engines. There are two common architectures: WordPress multisite (a network of subsites sharing core files and database) and a single-site install with a domain-mapping plugin that points each ccTLD to a specific language or region. Both approaches keep one codebase and one database, which simplifies updates and plugin management, but they demand careful server and DNS preparation.

Server and hosting prerequisites

  • Multiple-domain support: The hosting plan must allow you to add several domains (addon domains, parked domains, or aliases) to the same account or server block. Shared hosts often limit this; VPS, cloud, or managed WordPress plans usually allow it.
  • PHP workers and memory: Each mapped domain adds request overhead. Ensure the PHP-FPM pool or mod_php configuration has enough workers and memory for concurrent traffic across all ccTLDs.
  • File system permissions: The WordPress uploads directory must be writable by the web user for every domain. In multisite, wp-content/uploads/sites/<id> folders are created automatically; with domain mapping, symlinks or shared upload paths are common.
  • Object cache and Redis: If you use Redis or Memcached, configure a key prefix per domain or per subsite to avoid cache collisions.

DNS and SSL requirements

  • Full DNS control: You must manage A, AAAA, and CNAME records for each ccTLD. Point every domain to the same server IP or load balancer.
  • Wildcard or multi-domain (SAN) SSL: A single certificate covering *.example.com works only for subdomains. For distinct ccTLDs you need either a SAN certificate listing every domain (example.de, example.fr, example.jp) or individual certificates per domain with SNI support on the server.
  • Automatic renewal: Use Let's Encrypt with Certbot (or your host's ACME integration) to renew all certificates without manual steps. Verify the renewal hook reloads nginx/Apache.
  • HSTS and secure cookies: Enable HSTS per domain and set the WordPress COOKIE_DOMAIN constant appropriately — usually empty for multisite, or the root domain for mapped single-site — so authentication cookies work across the network.

WordPress configuration: multisite vs domain mapping

WordPress multisite

Enable multisite by adding define('WP_ALLOW_MULTISITE', true); to wp-config.php, then run the network setup. Choose subdirectory mode (example.com/de/, example.com/fr/) and map each ccTLD to a subsite using the built-in domain mapping (since WordPress 4.5) or a plugin like WordPress MU Domain Mapping. Each subsite gets its own tables (wp_2_posts, wp_3_options, etc.), keeping content isolated while sharing plugins and themes.

Single-site with domain mapping plugin

Plugins such as WPML, Polylang, or MultilingualPress can map a ccTLD to a language. The installation remains a single site; the plugin rewrites URLs, sets hreflang, and handles language negotiation. This is simpler for small numbers of languages but can hit plugin-compatibility limits as the network grows.

Database considerations

Multisite multiplies tables per subsite (roughly 11 tables each). A 10-language network means ~110 tables. Monitor table count and size; some managed hosts cap total tables. Single-site mapping keeps one table set but stores translations in post meta or custom tables, which can grow large with many languages.

Translation and content management across ccTLDs

Content must stay in sync across domains. A translation plugin that understands the chosen architecture is essential. SeaText integrates with WordPress and detects new pages, posts, products, and updates automatically, translating them into 125 languages in the background. It works with both multisite and domain-mapped setups because it operates at the page level via JavaScript and REST API, independent of the URL structure. You can edit translations, preserve brand voice, and run A/B tested variants per market without manual translation tickets.

SEO and hreflang implementation

  • Self-referencing hreflang: Every page on each ccTLD must include a self-referencing hreflang tag and reciprocal tags for all other language versions.
  • Sitemap per domain: Generate a separate XML sitemap for each ccTLD and submit each to its respective Google Search Console property.
  • Canonical URLs: Set the canonical to the current ccTLD URL, not the primary .com, to avoid cross-domain duplicate-content signals.
  • Robots.txt per domain: Serve a domain-specific robots.txt (multisite does this natively; single-site mapping needs a filter) so each ccTLD can control crawl directives independently.
  • Search Console verification: Verify each ccTLD as a separate property (DNS or HTML file) to monitor indexing, coverage, and manual actions per country.

Common pitfalls and limitations

  • Cookie domain conflicts: Incorrect COOKIE_DOMAIN breaks login across mapped domains. Test admin access on every ccTLD after mapping.
  • Mixed content warnings: Hard-coded HTTP asset URLs in theme or plugin settings cause insecure-content errors on HTTPS ccTLDs. Use relative URLs or the wp_get_attachment_url filter.
  • Plugin compatibility: Not all plugins are multisite-aware or domain-mapping-aware. Test critical plugins (caching, forms, SEO, analytics) on a staging network before launch.
  • Email deliverability: Transactional emails sent from a multisite network may use the primary domain's sender address. Configure SPF/DKIM/DMARC for each ccTLD or use a transactional email service that supports multiple domains.
  • Legal and compliance: Some ccTLD registries (e.g., .de, .fr, .cn) require local presence, business registration, or specific name-server locations. Verify registry rules before registering.

Key facts

CapabilityDetailSource
WordPress integrationSeaText activates on WordPress in under one minute and translates every page, post, product, and update automaticallyS1
Language coverage125 languages supported with no page limits or language capsS1
Translation controlAutomatic translation with option to edit, preserve brand voice, review key pages, and use A/B tested variantsS1
New content handlingNew WordPress pages, products, posts, and headlines are detected and translated in the backgroundS1
SEO for translated pagesFree automatic multilingual SEO included for every translated pageS1

FAQ

Can I use a single SSL certificate for all my ccTLDs?

Only with a SAN (Subject Alternative Name) certificate that lists every ccTLD explicitly. Wildcard certificates cover subdomains only (e.g., *.example.com), not separate TLDs like example.de and example.fr.

Does WordPress multisite share the same database?

Yes. Multisite uses one database with table prefixes per subsite (wp_2_, wp_3_, etc.). This keeps backups simple but means a database outage affects all ccTLDs simultaneously.

Which is easier to maintain: multisite or domain mapping on a single site?

Single-site with a mapping plugin is simpler for 2–3 languages. Multisite scales better for 5+ ccTLDs because each subsite can have its own plugins, themes, and administrators while core updates run once.

How does SeaText handle hreflang across multiple ccTLDs?

SeaText injects hreflang tags via JavaScript on the rendered page and via the REST API for search-engine crawlers, ensuring each ccTLD references its own URL and all sibling language URLs correctly.

What happens if a ccTLD registry requires local hosting?

You can point that ccTLD's DNS to a local server or CDN edge node while keeping the WordPress origin on your main server. Use a reverse proxy or CDN (Cloudflare, CloudFront) to terminate SSL locally and forward requests to the central install.

Can I run different plugins on different ccTLDs?

Only with multisite. Each subsite activates its own plugin set. On a single-site mapping, all plugins are active globally; you must use conditional logic in code to restrict functionality per domain.

How do I test the setup before going live?

Create a staging subdomain for each ccTLD (staging.example.de, staging.example.fr), map them to the staging network, verify SSL, hreflang, login, forms, and search console verification on each. Only then switch production DNS.

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.