<?php
header("HTTP/1.1 200 OK");
header("Content-Type: application/pdf");
header("Content-Disposition: inline; filename=\"file2.pdf\"");
readfile("./file2.pdf");
?>