Hello,
I have converted my WordPress page to Multisite.
The main page still works - it's only a landing page so far.
But if I set up another WP page now, I have problems.
The page will be set up and I can start this page via
gesundversicherung.com/test page also reach.
But I can NOT access the admin area.
gesundversicherung.com/testseite/wp-admin/ will give me ERR_TOO_MANY_REDIRECTS
I have read countless articles and posts, but of course none of them helped me to solve the problem - otherwise I would not write.
Briefly the changes to .htaccess - as WordPress showed it to me and as it is shown on the relevant page.
<pre>
# BEGIN WordPress
# Die Anweisungen (Zeilen) zwischen „BEGIN WordPress“ und „END WordPress“ sind
# dynamisch generiert und sollten nur über WordPress-Filter geändert werden.
# Alle Änderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben
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]
# END WordPress
</pre>
and the wp-config.php
<pre>
/* MultiSite-Config! */
define('WP_ALLOW_MULTISITE', true);
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'gesundversicherung.de');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
/* MultiSite-Config ENDE */
/* That's all, stop editing! Happy publishing. */
</pre>
I have also deactivated all plugins, unfortunately without success.
https - site is correctly set in the dashboard
Thanks!
Where can I continue?
The subpages should be for further colleagues/employees/blogs, if necessary with domain mapping.
Thanks a lot!
Greetings