Redirect only WordPress homepage with a 301 redirect

后端 未结 8 596
天命终不由人
天命终不由人 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 22:04

    You can use wp_redirect function of WordPress with status code. add Follwing code on wordpress init hook

    if ( is_home() ) {
        wp_redirect( $location, $status );
        exit;
    }
    

提交回复
热议问题