Redirect only WordPress homepage with a 301 redirect

后端 未结 8 603
天命终不由人
天命终不由人 2021-01-14 21:53

I have a blog, lets say example.com and another blog installed in example.com/np which is not multisite but a different WordPress installation.

8条回答
  •  余生分开走
    2021-01-14 21:57

    Put the following in your functions.php file:

    add_action( 'get_header', 'so16738311_redirect', 0 );
    function so16738311_redirect()
    {
        if( is_home() || is_front_page() ) {
            wp_redirect( home_url( '/np/' ), 301 );
            exit;
        }
    }
    

提交回复
热议问题