multisite installation redirection problem possibly htaccess issue
-
Hi, This is what i have :
site1 is in the main html directory /html/ its a sub directory install
wpconfig:define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'site1.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );htaccess:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L]Site 2 is in /html/site2/
wp-config:define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/site2/'; define( 'DOMAIN_CURRENT_SITE', 'site2.com' ); define( 'PATH_CURRENT_SITE', '/site2/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );htaccess:
RewriteEngine On RewriteBase /site2/ RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]I have site2.com set up with a wildcard configuration, this was done by the hosting people. The problem is that when i go to 123.site2.com it redirects me to site1.com . Site 2 has its own domain name pointing to the site2 directory. When I go to site2.com it goes to the right place, the problem is the subdomains redirecting to site1.com.
Any help is greatly appreciated.
Thanks
DD
The topic ‘multisite installation redirection problem possibly htaccess issue’ is closed to new replies.