installation - Multiple Multisite networks on the same domain?

admin2025-04-17  0

This is a question I can't find the answer to:

Can I run two separate Multisite networks under one domain?

Here's the scenario, to better explain, we have a company website that already uses a WordPress Multisite network to run our country sites, like so:

/
/
/
/
/
/
etc.

All of these sites use the same theme, the same plugins, so it makes sense to run them off one network.

Then we have a bunch of separate "stand-alone" wordpress sites that are marketing "campaign"-based sites, each one unique, usually developed by 3rd parties, with their own themes and plugins, which run of sub-directories of the multisite installations:




etc.

We don't really want to run them off the same Multisite installation because these use different themes and plugins, are written by 3rd parties, are subject to spikes due to marketing campaigns, and are less secure/stable than our country based sites network.

However, we do need them to be on the same domain...

Which brings me back to my original question:

Can I run two separate Multisite networks under one domain?

Thanks for reading!

This is a question I can't find the answer to:

Can I run two separate Multisite networks under one domain?

Here's the scenario, to better explain, we have a company website that already uses a WordPress Multisite network to run our country sites, like so:

http://wwwpanysite/
http://wwwpanysite/fr/
http://wwwpanysite/se/
http://wwwpanysite/de/
http://wwwpanysite/jp/
http://wwwpanysite/cn/
etc.

All of these sites use the same theme, the same plugins, so it makes sense to run them off one network.

Then we have a bunch of separate "stand-alone" wordpress sites that are marketing "campaign"-based sites, each one unique, usually developed by 3rd parties, with their own themes and plugins, which run of sub-directories of the multisite installations:

http://wwwpanysite/education
http://wwwpanysite/marketing
http://wwwpanysite/innovation
etc.

We don't really want to run them off the same Multisite installation because these use different themes and plugins, are written by 3rd parties, are subject to spikes due to marketing campaigns, and are less secure/stable than our country based sites network.

However, we do need them to be on the same domain...

Which brings me back to my original question:

Can I run two separate Multisite networks under one domain?

Thanks for reading!

Share Improve this question asked Mar 15, 2017 at 9:53 Neil HillmanNeil Hillman 1831 silver badge9 bronze badges 2
  • 1 Yes. Assuming these are pre-existing WP instances. Will all WP instances be served from the same server/VM? If so that makes it easier and you need to do some special htaccess configurations. If they are on separate servers/VMs, then its just a bit harder - you need a proxy in front of them. – user42826 Commented Mar 15, 2017 at 15:40
  • @user42826 or if they were on separate servers you could get one to mod_proxy the requests through to the other one, depending on load. But I agree htaccess is the answer. – Rup Commented Mar 16, 2017 at 6:53
Add a comment  | 

2 Answers 2

Reset to default 2

You can not run different networks or different Multisite installations under one domain in the default possibilities of WP. But you can use one Multiste with multiple networks with the help of a plugin - https://wordpress/plugins/wp-multi-network/

With this plugin get you the chance to create different networks with sites in one installation, one Multisite. Like the follow structure example.

http://wwwpanysite/education
     -- /wwwpanysite/education/de
     -- /wwwpanysite/education/en
     -- ...
http://wwwpanysite/marketing
     -- /wwwpanysite/marketing/de
     -- /wwwpanysite/marketing/en
     -- ...
http://wwwpanysite/innovation
     -- /wwwpanysite/innovation/de
     -- /wwwpanysite/innovation/en
     -- ...

You can install a new wordpress in a sub folder, let's call it "www2", so you'll have this URL :

http://www2panysite/

Then you configure your NEW network so you can have this structure :

http://www2panysite/education
http://www2panysite/marketing

Now you have 2 seperate wordpress installations and 2 different networks.

Wish this is what you'r looking for :)

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1744885389a272502.html

最新回复(0)