Wordpress - Redirect Main Site to Subsite in Multisite Wordpress
You can use the parse_request
action to accomplish this. Simply enable this plugin on your primary blog. Place the following code in a .php file and upload it to your plugins directory.
/*
Plugin Name: Redirect Main Site To Sub-Site
Description: Redirect 'main-site' to 'main-site/sub-site/'
Version: 0.1
Author: WPSE
Author URI: http://wordpress.stackexchange.com
License: GPL2
*/
add_action('parse_request', 'redirect_to_sub_site');
function redirect_to_sub_site(){
global $wp;
#Sniff requests for a specific slug
if('main-site' === $wp->request){
#The URL to redirect TO
$url = 'http://www.example.com/main-site/sub-site/';
#Let WordPress handle the redirect - the second parameter is obviously the status
wp_redirect($url, 301);
#It's important to exit, otherwise wp_redirect won't work properly
exit;
}
}
Let me know if you have any questions.
It appears that the $wp->request
that suggested in the above reply is always an empty string (in WPMS 4.5.2), so instead you can check this against is_main_site();
.
The accepted answer is not working for Wordpress 4.9.8. Here is the updated and tested code. Put this inside function.php of the active theme.
<?php
function wpse66115_redirect_to_sub_site() {
if ( is_main_site() ) {
exit( wp_redirect( 'http://www.example.com/main-site/sub-site/', 301 ) );
}
}
add_action( 'parse_request', 'wpse66115_redirect_to_sub_site' );
?>