将base_url()添加到标头

时间:2014-04-18 10:14:35

标签: php

是否可以使用以下内容但实际上有效?

header('location: base_url(). page.php?x=3'); 

2 个答案:

答案 0 :(得分:7)

尝试:

header('Location: ' . base_url() . '/page.php?x=3'); 

答案 1 :(得分:0)

我将此用于标题中的延迟重定向:

header('Refresh:5; url= '. base_url().'/YOURcontrollerName_or_functionName');