Multisite Dashboard not working
-
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 WordPressAnd 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)
Viewing 1 replies (of 1 total)
The topic ‘Multisite Dashboard not working’ is closed to new replies.