demtnman
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Networking WordPress
In reply to: Unique WP MU install in sub-directory of primary WP siteI made the leap of faith and clicked to activate the configuration, which lead me to the next page, which had me add the final code to htaccessand wp-config. It appears to be all set. Thanks, sorry for trouble. Feel free to delete thread if desired.
Forum: Networking WordPress
In reply to: Unique WP MU install in sub-directory of primary WP siteThis is the code in the wp-config.php file in /blogs directory:
define('WP_DEBUG', false); /* Multisite */ define('WP_ALLOW_MULTISITE', true); /* That's all, stop editing! Happy blogging. */This is the code in the htaccess of domain.com main primary directory:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressAnd this is code in .htaccess of /blogs directory:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blogs/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blogs/index.php [L] </IfModule> # END WordPressAnd this is the test on Tools > Network Setup of domain.com/blogs/wp-admin:
Sub-directory Install Because your install is in a directory, the sites in your WordPress network must use sub-directories.
Server Address The internet address of your network will be domain.com.
Thanks for help.
Viewing 2 replies - 1 through 2 (of 2 total)