點擊自己網(wǎng)站就會有一個網(wǎng)站快捷方式下載到你的桌面,這種效果如何實現(xiàn)呢?其實很簡單,我們可以用多種代碼方式實現(xiàn),這里站長圈介紹兩種方式,希望可以幫助到建站的朋友!
PHP代碼實現(xiàn)方法
在網(wǎng)站目錄下新建一個PHP文件,比如site.php,然后在你的網(wǎng)頁上做一個超級鏈接,這個不用多說了吧,鏈接直接訪問到這個文件,然后把site.php里面錄入如下代碼:
<?php
$Shortcut = "[InternetShortcut]
URL=http://bbs.52jscn.com
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
";
Header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=錦尚中國.url;");
echo $Shortcut;
?>
要想出現(xiàn)圖標(biāo)請先確保網(wǎng)站根目錄中有 favicon.ico文件即可,把代碼里面的http://bbs.52jscn.com和錦尚中國改成自己的域名和網(wǎng)站名稱。
ASP代碼實現(xiàn)方法
同理,如果是用asp頁面實現(xiàn),在網(wǎng)站下新建一個asp文件,比如site.asp,然后在里面錄入以下內(nèi)容:
<%
id=int(request("id"))
if id="" then id="1"
title=request("title")
If title="" Then title="錦尚中國"
Shortcut = "[InternetShortcut] " & vbCrLf
Shortcut = Shortcut & "URL=http://bbs.52jscn.com" & 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
%>
|