Why wordpress multisite redirect to wp-signup if site exists?
I just create a site on my Multisite domain (example.com), for instance site1.example.com
After this, I try to enter on https://site1.example.com/wp-admin, but I'm redirected to https://www.example.com/wp-signup.php?new=example.com
My .htaccess containt this lines:
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]
I have installed, among others, this plugins
- wordfence Security
- Loginizer
- WP Maintenance Mode (with Status Activated)
Why wordpress multisite redirect me to wp-signup if the site already exists?
The problem is because de SSL certificate, because I tried enter by HTTP and It's ok
How can solve it? Can I change something on .htaccess file?