You could perform an actual Download using a handful of header Functions as depicted in the Code below.
However; first, you may need to create an Arbitrary Processing File (example: download_init.php) at the Root of your App. Now inside that download_init.php File, you could add something like this:
<?php 
// CHECK THAT THE `d` PARAMETER IS SET IN THE GET SUPER-GLOBAL:
// THIS PARAMETER HOLDS THE PATH TO THE DOWNLOAD-FILE...
// IF IT IS SET, PROCESS THE DOWNLOAD AND EXIT...
if(isset($_GET['d']) && $_GET['d']){
    processDownload($_GET['d']);
    exit;
}
function processDownload($pathToDownloadFile, $newName=null) {
    $type               = pathinfo($pathToDownloadFile, 
                                   PATHINFO_EXTENSION);
    if($pathToDownloadFile){
        if(file_exists($pathToDownloadFile)){
            $size       = @filesize($pathToDownloadFile);
            $newName    = ($newName) ? $newName . ".{$type}" :basename($pathToDownloadFile);
            header('Content-Description: File Transfer');
            header('Content-Type: ' . mime_content_type ($pathToDownloadFile ));
            header('Content-Disposition: attachment; filename=' . $newName);
            header('Content-Transfer-Encoding: binary');
            header('Connection: Keep-Alive');
            header('Expires: 0');
            header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
            header('Pragma: public');
            header('Content-Length: ' . $size);
            return(readfile($pathToDownloadFile));
        }
    }
    return FALSE;
}
However, this implies that your Links would now have slightly different href values like so:
<!-- THIS WOULD TRIGGER THE DOWNLOAD ONCE CLICKED --> 
<a href="download_init.php?d=path_to_01.zip">download here</a>
If you find this Header approach too extraneous for your purpose; @Sanchit Gupta provided a Solution with the HTML5 download Attribute....