You can use filter that would allow you to create an exception with code which handles website redirect based on current configuration.
https://plugins.trac.wordpress.org/browser/simple-website-redirect/trunk/SimpleWebsiteRedirect.php#L113
Something like this :
add_filter(
'simple_website_redirect_should_redirect',
function( $should_redirect, $url ) {
if( home_url() === $url ) {
return false;
}
return $should_redirect;
},
10,
2
);
Htaccess : https://stackoverflow.com/a/38594600/19168006
Edit : You need to add that code to your theme functions.php
This is the second solution: Perhaps not as elegant as a theoretical, functional .htaccess solution (if it exists).
// Redirect entire site except one page ID
add_action( 'template_redirect', 'pc_redirect_site', 5 );
function pc_redirect_site(){
$url = 'http://' . $_SERVER[ 'HTTP_HOST' ] . $_SERVER[ 'REQUEST_URI' ];
$current_post_id = url_to_postid( $url );
if ( ! is_admin() && ! is_page( 9999 )) { // Excludes page with this ID, and also the WordPress backend
$id = get_the_ID();
wp_redirect( 'http://example.com', 301 ); // You can change 301 to 302 if the redirect is temporary
exit;
}
}
If you don’t want to redirect the admin section, remove ! is_admin()
&& Replace http://example.com with the destination you wish to redirect traffic to By default this performs a 301 (permanent) redirect; if you intent for this to be temporary, change 301 to 302 Obviously swap out 9999 for the page ID you wish to exclude.
Note, however, that if you aren’t using a child theme and you have auto-updates on, it will likely be overwritten at some point when your theme forces an update and you’ll have to update it again.
More explanition : here