php 를 사용 하여 다운로드 로 링크 단축 키 를 만 드 는 해결 방법


<?php 
$Shortcut = "[InternetShortcut] 
URL=http://www.your_url.com/ 
IconFile=http://www.your_icon.com/ 
IconIndex=1 
IDList= 
[{000214A0-0000-0000-C000-000000000046}] 
Prop3=19,2 
"; 
header("Content-type: application/octet-stream"); 
header("Content-Disposition: attachment; filename= .url;"); 
echo $Shortcut; 
?>
그러나 IconFile 이라는 아이콘 은 유효 하지 않 습 니 다.또한 이것 은 중국 어 를 지원 할 수 있 습 니 다.중국 어 를 지원 하지 않 으 면 코드 를 추가 할 수 있 습 니 다.

header('Content-Type: text/html; charset=utf-8'); 
이 phop 파일 을 서버 apache 에 올 린 다음 에 방문 하면 링크 를 만 드 는 단축 키 를 만 들 수 있 습 니 다.

좋은 웹페이지 즐겨찾기