<?php $file = 'path/to/document.docx'; $file = 'http://analog-design.net/2024_PHP/2024_PHP_21_12_2024/FTP/Monsta-FTP-master/test.docx'; header('Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document'); header('Content-Disposition: inline; filename="' . basename($file) . '"'); header('Content-Length: ' . filesize($file)); readfile($file); ?>