Redirect loop (only for multisite network admin)

I also had the same redirect problem when trying to access wp-admin/network. Performing below changes fixed it.

1). In wp-config.php file, added www.website.com rather than just website.com
define('DOMAIN_CURRENT_SITE', 'www.website.com');

2). use phpmyadmin –> wp_blogs table
Add www. to the domain value

Basically, both site name and blog name have to be exactly the same.

Cheers!

Leave a Comment