虽然该插件可能会解决您的问题,但您可以尝试直接使用WordPress API:
add_action( \'template_redirect\', \'wpse_142191_all_redirect\' );
function wpse_142191_all_redirect() {
if ( !is_user_logged_in() ) {
wp_redirect( \'http://other-site.com\', 301);
exit; //always die or exit after redirect
}
}
小心,这会将整个网站重定向到其他网站的主页上。我添加了一个条件,也许你不想被重定向为网站的用户。