• Hi,

    I tried to add the multisite option and everything worked fine until I tried to go to my website. Now, when I enter https:///www.mydomain.com I get redirected to …/wp-signup.php?new=mydomain.com

    Here is my wp config:

    /* Multisite */
    define(‘WP_ALLOW_MULTISITE’, true);
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, true);
    define(‘DOMAIN_CURRENT_SITE’, ‘www.domain.com’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    define( ‘NOBLOGREDIRECT’, ” );

    Here’s my htaccess :

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_USER_AGENT} libwww-perl.*
    RewriteRule .* � [F,L]
    RewriteCond %{HTTP_HOST} ^**\.***\.***\.***$
    RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    </IfModule>

    Am I missing something?

    Thanks!

  • The topic ‘/wp-signup.php?new=example.com’ is closed to new replies.