新建一個PHP文檔:名字好記就行如:shortcut.php
PHP文檔中的內容:
代碼
代碼如下:
<?php
$Shortcut = "[InternetShortcut]
URL=HTTP://www.jzread.com/
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.jzread.com/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.jzread.com/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檔一樣需要類似的操作。