2つのphpページがあります.1つはメインで2つ目を含み、expiresヘッダーを追加したいのですが、次のエラーが発生します
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();
2ページ目
ob_start();
header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
/// lots of html here
ob_end_flush();