我假设您愿意在维护模式下这样做,301是永久重定向。可以在函数中添加此代码段。php支持将整个wordpress站点重定向到另一个站点。
add_action( \'template_redirect\', \'wp_maintance_mode\' );
function wp_maintance_mode() {
wp_redirect( "http://new_url" );
// or if the folder is outside wordpress and lies under same url
wp_redirect( home_url(\'/folder_name\') );
exit;
}