Örnek kodlamayi alt'a ekliyorum, kendi kodlariniza entegre edersiniz.

<?php
$link = 'http://www.google.com';
$dosyaismi = 'deneme_link.url';

header('Content-Description: File Transfer'); 
header('Content-Type: application/octet-stream'); 
header('Content-Disposition: attachment; filename="'.$dosyaismi.'"'); 


$file = "
Prop3=19,2
[InternetShortcut]
URL=http://www.google.com/
IDList=
";

echo $file;
?>