/var/www/html/back/storage/app/public/114/a9fi1r/fdl.php
<?php  
$file_url = $_POST["dlpath"]."/".$_POST["dlname"];  
header("Content-Type: application/octet-stream");  
header("Content-Transfer-Encoding: utf-8");   
header("Content-disposition: attachment; filename=\"" . basename($file_url) . "\"");   
readfile($file_url);  
?>