Conozco dos formas, una es modficar los headers al momento de mostrar tu archivo con esto
Código PHP:
Ver original<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
?>
la otra es con un tag en tu archivo html así
esta ultima te lo muestra como embebido en tu pagina y necesita el plugin para pdf.
saludos