Change Administrator to Super Administrator (multi-site)

There are multiple ways to do this. One would be to change the values in the database directly (explained here). However, this easily introduces errors, so I don’t prefer it. The other method is to use grant_super_admin() with the user’s ID. The default admin’s ID is 1 and there are various methods to find other … Read more

Multisite Redirection to new domains

Try adding something like the following at the top of your .htaccess file: RewriteCond %{HTTP_HOST} ^(www\.)?oldone\.com RewriteCond ${REQUEST_URI} !^/wp-admin RewriteCond ${REQUEST_URI} !^/wp-login RewriteRule . http://newone.com%{REQUEST_URI} [R,L] Make sure the browser cache is clear. Change to 301 (if that is the intention) only when you are sure it’s working OK. Repeat for any other oldoneN.com / … Read more

File not found.