我有 2 两个 php 页面。一个是主要页面,包含第二个页面,我想向其中添加过期标头,但出现以下错误
Warning: Cannot modify header information -
headers already sent by (output started at..
在第一个
ob_start('ob_gzhandler', 6);
/// lots of html here
include("pageTwo.php");
/// lots of html here
ob_end_flush();
在第二页
ob_start();
header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
/// lots of html here
ob_end_flush();