• 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);

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @haukek,

    While I try to access https://cynthia.kiesswetter.ch/wp-admin/ I am unable to replicate the same error as you do. The .htaccess file and the configuration in wp-config file are looking good. Was this issue resolved or you see the ‘Not found’ error once you enter your username and password for your WordPress admin panel?

    Thread Starter haukek

    (@haukek)

    Thanks for coming back
    its a bit strange .. i used the “create new blg entry” menu from the top menu
    which broght me to the subdomain from where i could then also navigate to the dashboard .. and since then all looks good !
    So i guess it somehow has healed itself ??

    I am glad to hear that everything works as expected now. Best of luck! ??

    Hi there,

    I’m having the same issue. I created a subdomain, installed multisite as should, added the codes for wp-config and .htaccess. My main site is working fine, The new one can’t be accessed and the “home” page is some standard page my host provided.

    @haukek, what top menu are you referring to? I can’t find the create new blog entry option. I’d like to see if your option will solve my issue too.

    @chemicloud, maybe you could check mine?
    https://accordingtodi.dionnekathleen.com/wp-admin/

    Thanks in advance!

    Thread Starter haukek

    (@haukek)

    well i was still able to login as admin to the main site and there on the top left bar just beneath the wordpress icon it shows a menu item : “My Websites” (sorry mine is in german so i am not 100% sure about the translation) clicking on it it showed three entries 1) Manage Network 2) main site 3) second site (where the dashboard didnt work) … hovering over 3) it shows 4 options : 3.1 : dashboard 3.2 : create new blog entry 3.3 : manage comments 3.4 show website
    so after i used 3.2 and created a new entry the rest healed itself

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘wp-admin not found’ is closed to new replies.