I tried removing www. from my multisite and now I have a redirect loop…
-
I just followed all of the forum instructions on how to remove the www. from my multisite installation and now I’m stuck with a redirect loop. I went into the DB and removed all instances of www. in the phpMyAdmin and then I took it out of my wp-config file and that broke everything.
define(‘WP_DEBUG’, false);
define( ‘SUNRISE’, ‘on’ );define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, true );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘iics-k12.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
_____________________________________________________
The .htaccess file is below:RewriteEngine on
RewriteBase /
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]
- The topic ‘I tried removing www. from my multisite and now I have a redirect loop…’ is closed to new replies.