无法使用php重定向到另一个页面

时间:2015-06-04 08:12:16

标签: php

这是令人烦恼的代码:

<?php
//some code here
$zone = 'op';
$url = 'thread-list.php?zone=$zone';
header('Location : '.$url);
?>

标题之前和之后的所有内容都正常工作但页面未被重定向!我该怎么办?  使用Header在其他页面上工作正常,除了这里!

2 个答案:

答案 0 :(得分:1)

使用此:

“location”和“:”

之间不应有空格
$url='http://google.com' ;
 header("location: $url"); 

OR

header("Location: ".$url); 

另外

    $url = 'thread-list.php?zone=$zone';

此处$zone是错误它不会打印$zone

的值

答案 1 :(得分:0)

你应该使用:

header("Location: $url");
(double quotes evaluate the content)

    ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all(). 

{{3}}