Dashboard Multisite subdomains not working
-
I have created a Multisite setup by following the standard codex instructions.
Within WP I’m able to create sites. However, when I go to the dashboard of the site, I do get the following error:
https://salsa.dansen.nl/wp-admin/
Not Found The requested URL /wp-admin/ was not found on this server. Apache Server at salsa.dansen.nl Port 80
This is in my .htaccess file
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]
and this is added to my wp-config.php file
/**#@-*/ define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'dansen.nl' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); /**
Any suggestions what is necessary to do to get this fixed …
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Dashboard Multisite subdomains not working’ is closed to new replies.