點(diǎn)擊自己網(wǎng)站鏈接就會(huì)有一個(gè)網(wǎng)站快捷方式下載到你的桌面,這種效果如何實(shí)現(xiàn)呢?其實(shí)很簡(jiǎn)單,我們可以用多種代碼方式實(shí)現(xiàn),這里站長(zhǎng)圈介紹兩種方式,希望可以幫助到建站的朋友! 1、PHP代碼實(shí)現(xiàn)方法 在網(wǎng)站目錄下新建一個(gè)PHP文件,比如site.php,然后在你的網(wǎng)頁(yè)上做一個(gè)超級(jí)鏈接,這個(gè)不用多說(shuō)了吧,鏈接直接訪問(wèn)到這個(gè)文件,然后把site.php里面錄入如下代碼: <?php $Shortcut = "[InternetShortcut] URL=http://zhishi. IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 "; Header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=站長(zhǎng)求知.url;"); echo $Shortcut; ?> 要想出現(xiàn)圖標(biāo)請(qǐng)先確保網(wǎng)站根目錄中有 favicon.ico文件即可,把代碼里面的http://zhishi.和站長(zhǎng)求知改成自己的域名和網(wǎng)站名稱。 2、ASP代碼實(shí)現(xiàn)方法 同理,如果是用asp頁(yè)面實(shí)現(xiàn),在網(wǎng)站下新建一個(gè)asp文件,比如site.asp,然后在里面錄入以下內(nèi)容: <% id=int(request("id")) if id="" then id="1" title=request("title") If title="" Then title="站長(zhǎng)求知" Shortcut = "[InternetShortcut] " & vbCrLf Shortcut = Shortcut & "URL=http://zhishi." & 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 %> 3、直接上傳網(wǎng)站快捷方式,供用戶點(diǎn)擊鏈接下載 快捷方式點(diǎn)擊下載 下載下來(lái)修改下文件名及鏈接,上傳至網(wǎng)站主機(jī)即可。 |
|
來(lái)自: 大寶應(yīng) > 《網(wǎng)絡(luò)廣告》