prova così:

<?
$file="index.html";
$f=fopen($file,'rb');
$data='';
while(!feof($f))
$data.=fread($f,4096);
fclose($f);
echo nl2br(htmlentities($data));
?>