• I’m trying to set up a multisite environment with subdirectories, but when I add a new site and then go to dashboard of the new site, it shows a complete white page with the links to the different admin menus and the links all lead to a white page saying “File not found”.

    Here is a screenshot of what the admin page looks like: https://imgur.com/a/gRVEiX3

    This is my htaccess file:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    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]
    </IfModule>
    
    # END WordPress

    And this is my multisite section in wpconfig.php:

    define('WP_ALLOW_MULTISITE', true);
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', 'fresenia.man.poznan.pl');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    
Viewing 1 replies (of 1 total)
  • Moderator Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    On the Network Admin screen, check the Site Address for the specific sub-site you’re trying to create. If you have the wrong URL there, or if that can’t be resolved to the proper CSS file, then you will have that lack of styling.

Viewing 1 replies (of 1 total)

The topic ‘Multisite Dashboard not working’ is closed to new replies.