chad530
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Installing WordPress
In reply to: Issues with multisite – misconfigured host settings suspectedinmotion support looked at my DNS entries and said it looked to be set correctly.
I’m not sure why I can’t access anything related to domain2 (even the internal net admin dashboard links to that site’s dashboard) just end up back at domain1.com homepageSo it appears to be my domain mapping settings or something. My wordpress installs are all fresh other than my fiddling with a couple unrelated plugins over the last 2 days.
Settings -> Domain Mapping: “Server CNAME domain”: [domain1], options 1-4 checked below
Settings-> Domains: [domain2] is set with correct Site ID, domain says [domain2], primary:YesNetwork setup:
define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', '[domain1]'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);.htaccess:
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]
Viewing 1 replies (of 1 total)