Update from a long time
This commit is contained in:
15
php/download_apk.php
Normal file
15
php/download_apk.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
|
||||
if(stripos($ua,'android') !== false || true): // && stripos($ua,'mobile') !== false) {
|
||||
$file = $_SERVER['DOCUMENT_ROOT']."/transfer/localTransfer-app.apk";
|
||||
|
||||
header("Content-Description: File Transfer");
|
||||
header("Content-Type: application/octet-stream");
|
||||
header("Content-Disposition: attachment; filename=\"". basename($file) ."\"");
|
||||
|
||||
readfile ($file);
|
||||
//header("Location: ".$_SERVER['REQUEST_URI'].$file);
|
||||
exit();
|
||||
endif;
|
||||
?>
|
||||
|
Reference in New Issue
Block a user