admin管理员组文章数量:1122832
I just create a site on my Multisite domain (example), for instance site1.example
After this, I try to enter on , but I'm redirected to .php?new=example
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?
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?
Share Improve this question asked Mar 26, 2017 at 18:53 TorryVicTorryVic 1534 silver badges12 bronze badges2 Answers
Reset to default 0This .htaccess file looks like it is for a network that uses sub-folders but the URL address that you say you are trying is for a network that uses sub-domains. Which type are you using? Have you followed the steps in the /wp-admin/network/setup.php page correctly?
Another idea is that you have added SSL but the site is maybe still using the old http URL addresses. Click edit on one of the sites to see the Site Address (URL) field. Does it have https there or just http?
The redirect is to the main WordPress site and this is the way WordPress Multisite works. The sign up is always on the main site of the Network/Multisite.
if you want to allow registration on a subsite only try https://wordpress.org/plugins/network-subsite-user-registration/
本文标签: Why wordpress multisite redirect to wpsignup if site exists
版权声明:本文标题:Why wordpress multisite redirect to wp-signup if site exists? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736284575a1927279.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论