nevermind, solved already with this code
function force_section_redirect() {
if (MULTIPLE_DOMAIN_DOMAIN === 'domain.tld' && (is_home() || is_front_page())) {
wp_redirect(home_url('/path/'));
exit;
}
}
add_action('template_redirect', 'force_section_redirect');
DAMN, THIS PLUGIN IS GREAT! THANK YOU SO MUCH!!
-
This reply was modified 4 years, 7 months ago by supersekali.