Enabling the WordPress Multisite Network
-
domain: dayschools.org
Everything works just fine until I get to the section involving Enabling the Network:
1.Add the following to your wp-config.php file in /opt/bitnami/apps/wordpress/htdocs/ above the line reading /* That’s all, stop editing! Happy publishing. */:
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘dayschools.org’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);2. Add the following to your .htaccess file in /opt/bitnami/apps/wordpress/htdocs/, replacing other WordPress rules:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]Every time i enter these lines of code my site breaks, and when I retry to install multi-site it gives me the following error even though multisite has not been enabled yet:
Warning: An existing WordPress network was detected.
I have tried countless tutorials. Maybe I’m missing something. This is extremely frustrating. Any help would be amazing!!!
The page I need help with: [log in to see the link]
The topic ‘Enabling the WordPress Multisite Network’ is closed to new replies.