是否可以使用以下内容但实际上有效?
header('location: base_url(). page.php?x=3');
答案 0 :(得分:7)
尝试:
header('Location: ' . base_url() . '/page.php?x=3');
答案 1 :(得分:0)
我将此用于标题中的延迟重定向:
header('Refresh:5; url= '. base_url().'/YOURcontrollerName_or_functionName');