新建一個PHP文檔:名字好記就行如:shortcut.php
PHP文檔中的內容:
代碼
復制代碼 代碼如下:
<?php
$Shortcut = "[InternetShortcut]
URL=http://www.jb51.net/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=.url;");
echo $Shortcut;
?>
要想出現圖標請先確保網站根目錄中有 favicon.ico 文件
上傳到網站,訪問地址:如:http://www.jb51.net/shortcut.php 就會有提示下載一個名為 .url文件,保存在本地就是一個快捷方式!
下面是asp實現代碼:
復制代碼 代碼如下:
<%
id=int(request("id"))
if id="" then id="1"
title=request("title")
If title="" Then title=""
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=http://www.jb51.net/article/"&id&".htm?desktop" & vbCrLf
Shortcut = Shortcut & "IDList= " & vbCrLf
Shortcut = Shortcut & "[{000214A0-0000-0000-C000-000000000046}] " & vbCrLf
Shortcut = Shortcut & "Prop3=19,2 " & vbCrLf
Shortcut = Shortcut & " " & vbCrLf
Response.AddHeader "Content-Disposition", "attachment;filename="&title&".url;"
Response.ContentType = "application/octet-stream"
Response.Write Shortcut
%>
需要注意的是,因為可能安全問題導致被鎖定
需要如下操作,在".url"--》右鍵--》屬性--》解除鎖定 即可訪問,這個就像網上下載的chm文件一樣需要類似的操作。