Open PDF when accessing Website [duplicated]

0

I need to know if I have to create an index and insert an iframe and say to open the pdf?

    
asked by anonymous 29.02.2016 / 15:16

1 answer

1

Redirect the index does not help? If yes, use the structure below.

<html>
  <head>
    <meta http-equiv="refresh" content="0;URL=seu_arquivo.pdf" />
  </head>
  <body>
  </body>
</html>
    
29.02.2016 / 18:52