How can I download links directly?

0

Good, my question is how can I directly download this type of links:

link

Without having to click derechi and download.

    
asked by Antonio Olvera 19.08.2018 в 22:19
source

1 answer

1

You can do it with PHP as follows:

$file = "URL";

// Quick check to verify that the file exists
if( !file_exists($file) ) die("File not found");

// Force the download
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header("Content-Length: " . filesize($file));
header("Content-Type: application/octet-stream;");

readfile($file);
    
answered by 19.08.2018 / 23:42
source