<?php
/**
 * ********************************************
 * Description   : 下载
 * Filename      : download.php
 * Create time   : 2019-12-13 13:42:57
 * Last modified : 2020-09-17 21:41:01
 * License       : MIT, GPL
 * ********************************************
 */

$file   = '/download/witzeb-v1.1.9.exe';
//判断如果文件存在,则跳转到下载路径
if(file_exists('.'.$file)) {
    header('location:'.$file);
} else {
    header('HTTP/1.1 404 Not Found');
}
