header("Content-Type: application/pdf");
header("Content-Disposition:inline;filename=\"invoice.pdf\"");
header("Content-Transfer-Encoding: binary");
ob_start();
include 'pdfInvoice.php';
$html = ob_get_contents();
ob_end_clean();
include("mpdf60/mpdf.php");
$mpdf = new mPDF('utf-8', 'A4', '12', '', 10, 10, 7, 7, 10, 10);
$stylesheet = file_get_contents('css/invoice.css'); //подключаем css
$mpdf->WriteHTML($stylesheet, 1);
$mpdf->WriteHTML($html, 2); //формируем pdf
$mpdf->Output('invoice'.$_POST['id'].'.pdf', 'D');
header("Location: /invoice/1");
После скачивания pdf не работает перенаправление. Можно ли исправить?