建立一個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檔案一樣需要類似的操作。