Redirection not working in Wordpress?

2019-02-27 01:45发布

I am using below code for redirection in wordpress

$currentPage = explode('?', $_SERVER ['REQUEST_URI']);
  $current_page_url = $currentPage[0];
 if($current_page_url == '/e-commerce')
    {
        header("Location : http://www.mysite.com/complete-e-commerce-solution",true);
    }

I am using this code in header.php, i am redirecting to third party site.is that problem?

2条回答
对你真心纯属浪费
2楼-- · 2019-02-27 01:57

Any chance of getting /e-commerce from $currentPage[0]? The '/e-commerce' looks more like something that would be found at $currentPage[1].

查看更多
我命由我不由天
3楼-- · 2019-02-27 02:15

you need to follow the header call with an 'exit`. However, you might be better using wordpress's inbuilt wp_redirect function:

wp_redirect("Location : http://www.mysite.com/complete-e-commerce-solution");
exit;

Using wordpress functions allows plugins to filter the input and sanitises the input (not so applicable here, just good practice).

查看更多
登录 后发表回答