• I am new to wordpress and urgently need help. After installing bitnami multisite I am able to view my dashboard and default site. I am also capable of adding new sites, but the new sites and dashboards cannot be viewed. Since I have a local installation, I am using sub directories.

    Here is my .htaccess file:

    # 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

    Here is the multisite portion of my wp-config:

    define( 'MULTISITE', true );
    define( 'SUBDOMAIN_INSTALL', true );
    $base = '/';
    define( 'DOMAIN_CURRENT_SITE', 'localhost' );
    define( 'PATH_CURRENT_SITE', '/' );
    define( 'SITE_ID_CURRENT_SITE', 1 );
    define( 'BLOG_ID_CURRENT_SITE', 1 );
Viewing 1 replies (of 1 total)
  • I’m new at this too, but it seems to me that you are aiming to set up a sub-directory install, but your wp-config says its a aubdomain install. Try changing SUBDOMAIN_INSTALL to false.

Viewing 1 replies (of 1 total)
  • The topic ‘Cannot access my dashboard and new sites in Multisite’ is closed to new replies.