Hello,
Let me jump into this forum. I have a similar problem.
I set up a site, and then created a network, by following the instruction in the page below.
https://codex.wordpress.org/Create_A_Network
I edited wp-config.php and htaccess files. But if I try to open dashboard of the new site, it always says;
This page isn’t working
ramen-uroko.com redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTS
I read the explanation in the page above,
https://codex.wordpress.org/htaccess#WordPress_3.5_and_up
but I’m still not sure if I edited my .htaccess file correctly or not.
Later part of the .htaccess files went as below;
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
AddHandler x-mapp-php5.5 .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I simply replaced the lines between “# BEGIN WordPress” and “# END WordPress” with the lies below, as instructed;
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]
Is this what I am supposed to do? If so, what else prevents me from creating a network?