php实现方法:
实现以下PHP文件,放入服务器生成链接地址,将生成的链接地址放入你的网页中,用户点击即下载该快捷方式。
<?php
$Shortcut = "[InternetShortcut]
URL=http://wordpress.roudanstudio.com/
IconFile=http://wordpress.roudanstudio.com/favicon.ico
IconIndex=0
HotKey=1613
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=Mark天下.url");
echo $Shortcut;
?>