Multisite troubleshooting
-
Hi,
So, I’ve perused numerous blog posts and WP forum articles, and I am still not getting multisite to work on my site.
My site is hosted through BlueHost. My domain is through Google (which is GoDaddy). I’ve made sure all of my nameservers are pointing to BlueHost (NS1.BLUEHOST.COM
NS2.BLUEHOST.COM )
and that my A Records are pointing to the shared IP address I have on BlueHost as well.In the BlueHost hosting cPanel, I set the subdomains to be *.mydomain.com and saved in /public_html/ and not /public_html/wildcard. I manually installed WP to the public_html folder and not a subfolder.
My .htaccess is as follows:
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPress
and my wp-config.php looks like:
/* Multisite */ define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'mysite.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); /* That's all, stop editing! Happy blogging. */
The multisite configuration and setup seems to work perfectly; however, every time I try to set up a new site and visit the dashboard or the live site of the new subdomain I get, “Webpage not available”.
What am I doing wrong??
- The topic ‘Multisite troubleshooting’ is closed to new replies.