次のコードのどこが間違っているのかを見つけるのを手伝ってください。生成されたショートカットは、URL 値
url.php
<? header('Content-Type: text/html; charset=utf-8');?><?//生成快捷方式$url=$_REQUEST['url'];$title=$_REQUEST['title'];$content = "[InternetShortcut]URL=".$url."IDList=[{000214A0-0000-0000-C000-000000000046}]HotKey=1626Prop3=19,2";Header("Content-type: application/octet-stream");header("Content-Disposition: attachment; filename=".$title.".url;");echo $content;?>
<?php $url=$_REQUEST['url'];$title=$_REQUEST['title'];$content = "[InternetShortcut]URL={$url}IDList=[{000214A0-0000-0000-C000-000000000046}]HotKey=1626Prop3=19,2";Header("Content-type: application/octet-stream");header("Content-Disposition: attachment; filename={$title}.url;");echo $content;?>
IconIndex=1 がありません
$url=$_REQUEST['url'];$title=$_REQUEST['title'];$content = "[InternetShortcut]URL={$url}IconIndex=1IDList=[{000214A0-0000-0000-C000-000000000046}]HotKey=1626Prop3=19,2";Header("Content-type: application/octet-stream");header("Content-Disposition: attachment; filename={$title}.url;");echo $content;