Keywords: WordPress - Windows - Technical issue - Other
Description:
Using the latest multisite installer 4.9.5-s on windows 10. Easy to install, I can login to the main website and create subdomains.
The subdomain main page pulls up, but when I got to subdomain.localhost/wp-login.php I keep getting the cookies error/blocked on Firefox.
Not sure how to login to any subdomains.
My wp-config is:
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', true );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'localhost' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
htacces is:
# 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 am at a loss on how to enabling login on my localhost subdomains.
My goal is to develop several different websites via subdomains and on my pc and then migrate them as their own main website upon production.
Does it have to do with apache2 not allowing it? I am not sure, but any help is greatly appreciated.