How To Setup Multi-Site In Drupal 8

How-to-setup-Multi-site-1
Default Avatar
By Jayesh Makwana
Drupal 8 provides multi-site feature to use same code for different sites. You can manage multiple websites easily using the multi-site feature of Drupal 8. Multi-site allows you to use a single Drupal installation for several sites with core code, contributed modules and themes. You can also manage configuration settings and database separately for each site so it will have its own content, settings, enabled modules and enabled theme. We have shared two flow for managing multi-site feature.

Table of Contents

About Author

Default Avatar

Jayesh Makwana

Experienced Drupal developer and content creator. Passionate about open source technologies and web development best practices.

drupal 8 multi site folders Step 1: Download latest Drupal 8 and extract code in your project directory with respect to your environment like WAMP, MAMP, LAMP, XAMPP, etc. Step 2: Go to “sites” folder and create the following folders domain1.com , domain2.com as per the below Structure image. Note: Please create virtual hosts (domain1.com and domain2.com) in your localhost environment. Step 3: In “sites” folder copy “example.sites.php” and rename file to “sites.php” and add the following lines to configure the above sites in your Drupal 8 website. $sites[‘domain1.com’] = ‘domain1.com’; $sites[‘domain2.com’] = ‘domain2.com’; Step 4: We need two databases for both websites so create domain1_db and domain2_db database respectively for domain1.com and domain2.com sites. Step 5: After above configurations, install both the site using below URL and after installation, access multi-site feature. domain1.com/core/install.php domain2.com/core/install.php
We need to follow the same Step1, Step2 and Step3 as above. Step 6: Create one database domain_db for managing multi-site through single database. Step 7: After above configurations, install both the site using below URL. After installation access your multi-site feature. During the installation, use different table name prefix for each sites configuration. Please do check table prefix configuration image. domain1.com/core/install.php domain2.com/core/install.php drupal 8 database configuration After adding different prefix to each site, it will have it’s table in single database. Please do check the attached Database Table image. We have added test1 prefix for domain2.com. drupal 8 database