D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
novonote_ant
/
adm
/
Filename :
baixar.php
back
Copy
<?php // Caminho absoluto do arquivo no servidor $arquivo = '/var/www/html/novonote/adm/ContratoImpresso/impContrato/164_Farmacias São João Ltda.pdf'; // Verifica se o arquivo existe if (file_exists($arquivo)) { // Define os headers para forçar o download header('Content-Description: File Transfer'); header('Content-Type: application/pdf'); // ou application/vnd.openxmlformats-officedocument.wordprocessingml.document para .docx header('Content-Disposition: attachment; filename="' . basename($arquivo) . '"'); header('Expires: 0'); header('Cache-Control: must-revalidate'); header('Pragma: public'); header('Content-Length: ' . filesize($arquivo)); // Limpa o buffer e envia o arquivo flush(); readfile($arquivo); exit; } else { echo "❌ Arquivo não encontrado: " . basename($arquivo); }