wp-admin not found
-
I successfully created a multisite out of an existing site (subdomain setup)
but now when i create a new site (cynthia.kiesswetter.ch) it
1) shows a standard page of my hoster
2) trying to access the dashboard (https://cynthia.kiesswetter.ch/wp-admin/) results in :
Not Found
The requested URL /wp-admin/ was not found on this server.—-
.htaccess
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
—wp-config
—
define(‘WP_ALLOW_MULTISITE’, true );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘kiesswetter.ch’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
- The topic ‘wp-admin not found’ is closed to new replies.