如果页码匹配且wp_get_referer匹配wit $ value,我试图添加条件登录,但我不知道我是否坚持了一些
add_action( 'template_redirect', 'wpse15677455_redirect' );
function wpse15677455_redirect() {
$ref = wp_get_referer();
$value = ('https://mywebsite.com/quotaton/') ;
if (!is_page(555)) & $ref => $value {
wp_redirect( home_url() );
// exit; //( I also dont know if need exit if i add this code in function)
}
};
我也认为这是解决方案,我不知道是不是
add_action( 'template_redirect', 'wpse15677455_redirect' );
function wpse156774_redirect() {
$ref = wp_get_referer();
if (is_page(555)) && if (strpos($ref, 'quotaton') !== false) {
echo 'true';
}
};
预先感谢
答案 0 :(得分:1)
您对我的问题不清楚。但是我想您正在寻找这个。
add_action( 'template_redirect', 'wpse15677455_redirect' );
function wpse15677455_redirect() {
$value = ('https://mywebsite.com/quotaton/') ;
if (!is_page(555) & wp_get_referer() !== $value ) {
wp_safe_redirect( get_home_url() );
}
};
答案 1 :(得分:1)
了解条件后,我便找到了解决方法:
add_action( 'template_redirect', 'wpse1567745555_redirect' );
function wpse1567745555_redirect() {
$ref = wp_get_referer();
if (is_page(227) && $ref == "https://mywebsite/quotaton/") {
//echo 'Its Working Let it Continue';
}
else if (is_page(227) && $ref !== "https://mywebsite/quotaton/"){
wp_redirect( 'https://mywebsite/sorry/', 301 ); exit;
// Not Working Let's Redirect and exit
}
else if (!is_page(227)){
// echo 'Its Not Need Anything Here';
}
}
如果您只希望允许用户访问来自特定URL的特定页面,则上述代码对WordPress很有用。
如有任何建议,请添加它们。