Redirect based on referer using Advanced Custom Fields
Im currently trying to protect some WP pages by assigning a specific template to them.
Ive created the ACF fields "Referring URL" and "Redirect URL", as these could alter depending which page the template is assigned to.
What changes would be needed to have the template functionality go: IF referer is not "referring_url" redirect to "redirect_url"
Id like there to be no caching taking place either
However, the code below, placed just below get_header();
, doesn't seem to work consistently, either incorrect formatting, placement in the template file, or a cache issue.
if ( get_field('enable_portal_protection') !current_user_can('administrator') ) {
$referring_url = get_field('referring_url');
$redirect_url = get_field('redirect_url');
$referer = $_SERVER['HTTP_REFERER'];
$location = "Location: " . $redirect_url;
if ( $referer != $referring_url) {
header($location);
}
}
Topic advanced-custom-fields page-template redirect Wordpress
Category Web