İnternetten bir türlü bulamadım linux sunucuma apache2 kurulu php ile örnek opt klasöründen bir dosya indireceğim bunu nasıl yapabilirim ?

Site dosyaları /var/www/html içerisinde


        if(isset($_POST['indirdosya'])){
            
            $dosyayolu = "/opt/ahmet/deneme.dat";
            if(file_exists($dosyayolu)){
               header($_SERVER['SERVER_PROTOCOL'].' 200 OK');
               header("Content-Type: octet-stream");
               header("Content-Transfer-Encoding: Binary");
               header("Content-Length: ".filesize($dosyayolu));
               header("Content-Disposition: attachment; filename=\"".basename($dosyayolu)."\"");
               readfile($dosyayolu);
            }
            else
            {
                echo "dosya yok";
            }
        }
böyle yaptığım zaman bulunduğum sayfanın indexini deneme.dat içerisine yazıyor