Cannot login to subdomain's wp-admin
-
I have installed wordpress 3.6 on my site and activated Multisite. I chose to configure the site to use subdomains instead of subfolders. I have modified the .htaccess file to have the following:
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]I also added this to the wp-config.php file:
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘geekinsights.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);The problem is i cannot go into my subdomain’s wp-admin. Whenever I do I get a 404 error despite the fact that I can login at the main domain’s wp-admin. Is there something else I need to do that I may have forgotten? Any advice on how I could fix this?
- The topic ‘Cannot login to subdomain's wp-admin’ is closed to new replies.