PHP将网站添加到桌面快捷方式代码 第1张

效果可以看本站的,代码如下:

<?php
$Shortcut = "

[InternetShortcut]

URL=https://52lc.top/

IDList=IconFile=https://52lc.top/favicon.ico

Prop3=19,2";

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

header("Content-Disposition: attachment; filename=琳晨博客.url");

echo $Shortcut;
?>