PHP değişiklik geçerli url olmadan yönlendirme?

0 Cevap php

Biz bazı mp3 dosyası toplama ve flash player kodu aşağıda php dosyasını kullanarak mp3 dosyayı işlemek listeleme mp3 dosyasını izlemek için, bu mp3 dosyası kullanmış

http://www/example.com/getFile.php?fileid=12

<?php
$id = $_REQUEST['fileid'];

// Some code to store download traking and get filename for this id in $filename var.
$filename = getFileName($id);

header('Content-type: audio/mpeg');
header('Content-Disposition: filename=' . $id . '.mp3');
readfile($filename);

?>

Ama IE'de çok büyük ve oyuncu olsun mola mp3 dosya boyutu, bunun için biz de aşağıdaki kodu kullanabilirsiniz

<?php
$id = $_REQUEST['fileid'];

// Some code to store download traking and get filename for this id in $filename var.
$filename = getFileName($id);

header('Location: '. $filename);
?>

this code working fine but its also chnages current URL i.e http://www/example.com/getFile.php?fileid=12 to http://www/example.com/files/xyz.mp3

böylece kullanıcı ben bunu önlemek nasıl doğrudan mp3 dosyasını indirebilirsiniz? php veya başka şekilde kullanarak?

0 Cevap