Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter demtnman

    (@demtnman)

    I 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.

    Thread Starter demtnman

    (@demtnman)

    This 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 WordPress

    And 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 WordPress

    And 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)