aboutsummaryrefslogtreecommitdiff
path: root/oworadio/source/index.php
blob: 4436bac2c31670af398c42d52a518113e0296a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

$file = 'http://localhost:8000/public';

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
ob_clean();
flush();
readfile($file);
exit;