just do it

php 代码 创建网站桌面快捷方式

<?php

//$url = $_GET['url'];
//$filename = urldecode($_GET['name']);

$url = "your site";
$filename = "site name";

$filename = iconv('utf-8','GBk',$filename);//字符集转换

if (!$url  || !$filename) exit();
$Shortcut = "[InternetShortcut]
URL={$url}
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";

header("Content-type: application/octet-stream");

header("Content-Disposition: attachment; filename={$filename}.url;");
echo $Shortcut;
?>

点赞