Homepage redirect to https://domain_current_site/
-
I’ve got a Network of Multisites established:
- https://multisite-portal.mannixmarketing.com/
- https://asaratogawedding.wp1.mannixmarketing.com/
- https://asaratogawedding.wp1.mannixmarketing.com/asaratogawedding/
However it seems that each first site, on each multisite’s homepage redirects to: https://domain_current_site/
I have the default multisite .htaccess:
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 currently have the following in my wp-config.php:
/* Multisite */ define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); //define('DOMAIN_CURRENT_SITE', 'multisite-portal.mannixmarketing.com'); //define('PATH_CURRENT_SITE', '/'); //define('SITE_ID_CURRENT_SITE', 1); //define('BLOG_ID_CURRENT_SITE', 1); define( 'DOMAINMAPPING_ALLOWMULTI', 1 ); define( 'SUNRISE', 'on' );
Any insight would be greatly appreciated!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Homepage redirect to https://domain_current_site/’ is closed to new replies.