WP重定向功能在实时站点上不起作用

时间:2018-09-14 06:53:20

标签: wordpress redirect

我在本地主机上尝试了此代码:

<?php wp_redirect('https://google.com/'); exit; ?>

在localhost上运行良好。

当我将其上传到实时网站时,它的功能wp_redirect无法正常工作。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您应该将此功能放在代码的顶部。 建议您对重定向页面使用初始化操作

add_action('init', function(){
if( isset($_GET['exit']) ) {
wp_redirect('https://google.com/');
 exit;
}
});

此代码将 functions.php 放入您的主题。