Multisite Tables the same as Single Install?

There’re some special tables Codex Link in Multisite. In short: No you can’t. But you can degrade to a single site install and then import them there. If in doubt, simply add a new local multisite install, import the posts there, downgrade to single site and then export/import again.

Redirect all users, except network administrators, from the main site to a subsite

You’ll need to tie into template_redirect hook where you will check the site and the user and then redirect if needed. function redirect_to_subsite() { if( is_main_site() && !current_user_can(‘manage_network’) ) { $blog_id = 5; // <<—– Update the ID to the subsite blog ID you want to redirect to wp_redirect( get_site_url( $blog_id ) ); exit(); } … Read more

WP Multisite .htaccess interferes with cgi-bin

It turns out that the problem wasn’t WP per say but that mod_rewrite was being forbidden because of some server settings. I didn’t realize it until the server guy sent over an error log that was filled with messages containing: Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden To make … Read more