Last active
August 29, 2015 14:09
-
-
Save jennimckinnon/8b7c06b2ddf6bfaf1c3f to your computer and use it in GitHub Desktop.
wp-config.php sub-directory multisite installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Multisite */ | |
define( 'WP_ALLOW_MULTISITE', true ); | |
define('MULTISITE', true); | |
define('SUBDOMAIN_INSTALL', false); | |
define('DOMAIN_CURRENT_SITE', 'yourdomain.com'); | |
define('PATH_CURRENT_SITE', '/'); | |
define('SITE_ID_CURRENT_SITE', 1); | |
define('BLOG_ID_CURRENT_SITE', 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment