I tried this code on localhost:
<?php wp_redirect('https://google.com/'); exit; ?>
On localhost it works well.
As I upload this on live site, It's function wp_redirect does not work.
Thanks for your help.
I tried this code on localhost:
<?php wp_redirect('https://google.com/'); exit; ?>
On localhost it works well.
As I upload this on live site, It's function wp_redirect does not work.
Thanks for your help.
You should put this function at the top of the codes. I suggest you use init action for redirect page.
add_action('init', function(){
if( isset($_GET['exit']) ) {
wp_redirect('https://google.com/');
exit;
}
});
this code put functions.php in your theme.