saluut !
je veux faire une redirection mp3 avec php son prendre beaucoup de bandwidth sur mon serveur ,

quand j’utilise ce code le php télécharge le fichier mp3 , je veux aucun téléchargement juste la redirection c'est possible ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
header("Content-Transfer-Encoding: binary");
header("Content-type: audio/mp3");
header("Content-Disposition: attachment; filename=\"$song.mp3\"");
header("Content-Length: " . $size);
@readfile("http://site.com/song.mp3");

merci