Multisite Part 1 – How to set up WordPress Multisite with Bluehost

So how do we set up WordPress Multisite with Bluehost? If you use the one click installer (Simplescripts) within Bluehost to install WordPress and if you are on a shared server, normally you don’t get a ‘one click’ option to install multisite. The only way to make it work is to manually configure it. Now, you can find this info pretty much everywhere on the net but I am writing this for my own purpose so I can document it in case I need to refer to it in the future, as well hopefully this post will somehow help someone with the same hosting environment.

Please be aware that this step by step procedure is written for a fresh install, this post doesn’t talk about migrating or old install. Also, it’s with the assumption that you are with Bluehost. So, here we are.

1. Use * to set up wildcard subdomain.
STEP 1. Go to Bluehost Cpanel Subdomains page and create a wildcard subdomain similar to the screenshot on the left. Please note that by default as soon as you add the ‘*’ to the subdomain field, the word ‘wildcard’ will show up in the Document Root field after public_html/, ensure you take out the word ‘wildcard’ and leave the field blank.

STEP 2. Install WordPress using SimpleScripts within Bluehost. Ensure it is installed at the root level so you should have nothing entered after domain.com/ as everything entered after the ‘/’ will be treated as sub level and multisite therefore will not work.

STEP 3. Once it’s installed, FTP in to your server and download wp-config.php. Add a one liner code define(‘WP_ALLOW_MULTISITE’, true); to wp-config.php just before the “That’s all,…” similar to below, then upload it back to the server.

/** Enable WordPress Multisite **/
define('WP_ALLOW_MULTISITE', true);

/** That's all, stop editing! Happy blogging. **/

STEP 4. Refresh your browser, you should now have the ‘Network Setup’link under the ‘Tools’ menu. Click on it and you should see the set up page.

4. Click on the Network Setup Link under the Tools to set up the network
Now you have the option of setting it up using subdomain (sub.domain.com) or subdirectory (domain.com/sub). I chose to go with subdomain because I think it’s a better practice. One important thing to note is that if you want to go with subdomain, it is suggested that you remove the ‘www’ prefix in the domain name, otherwise your subdomain would look like sub.www.domain.com as opposed to sub.domain.com. To remove the ‘www’ prefix, you can simply go to ‘General’ under the ‘Settings’ on the side and remove the prefix.

STEP 5. Before you click the Install button, you need to create a directory within the ‘wp-content’ directory. The directory must be named ‘blog.dir’ so once it’s created, it will look like wp-content/blog.dir. This directory is used to store the media files for the additional subdomains.

STEP 6. Click Install and you should be landed on a page similar to the screenshot below where you need to copy and paste the codes to a couple files, so go ahead and back up your wp-config.php and .htaccess in case something goes wrong. And then go ahead and follow the instruction. By pasting these codes to the 2 files, you are enabling the network. For codes in .htaccess file, please ensure you paste the codes within # BEGIN WordPress and # END WordPress comment lines as you may have other setting you do not want overwrite, so paste with care.

6. Create a network by pasting these codes to wp-admin.php and .htaccess files.

STEP 7. Once you done pasting and uploading the 2 files to your server, just click the ‘Log In’ link below the page to re-login.

7. My Sites in WordPress.
Once you log in again, you should see ‘My Sites’ link just below the ‘Dashboard’. My Sites page will list out all the sites you created under your domain. See the screenshot on the right to see how it looks like, currently as you can see I only have the very first site set up, I can create more site by clicking ‘Create a New Site’ link but we will not get into that here.

That’s it, you should be good to go. Now, for those of you who have other tips or better way to make the the set up easier, let’s share it below in the comment section.

One thought on “Multisite Part 1 – How to set up WordPress Multisite with Bluehost

  1. Excellent article! Really helped me understand the Bluehost wildcard subdomain setup.

    I have a question though. Do you have more input about why you should use a sub-domain rather than a subdirectory? I’ve reading other articles online and most lean towards setting up a sub-directory.

Leave a Reply