0
我想重定向頁面到基於函數返回類型的特定頁面。PHP頭錯誤無法修改頭信息
我正在使用php header()
來這樣做。但是當我加載頁面我收到錯誤信息
Cannot modify header information - headers already sent by (output started at
這裏有什麼故障?
這裏是我做了什麼
<?php
if(ifproductPublished($qs) == true){
header('Loaction: not-found.php');
} elseif(ifproductValid($qs) == false){
header('Location: not-found.php');
} else {
?>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="panel panel-default">
...
?>
我該如何解決?
重定向後嘗試退出 –