<?php
$file_url = 'https://aboveorbeyondjm.com/wp-content/uploads/2025/02/FREE-PREVIEW-20-Growth-Mistakes-Stalling-Your-Construction-Business-And-How-to-Fix-Them-1.pdf';
header('Content-Type: application/pdf');
header('Content-Disposition: attachment; filename="' . basename($file_url) . '"');
readfile($file_url);
exit;
?>