<?php
$data = "
[InternetShortcut]
URL=http://www.7move.com/?desktop
IconFile=http://www.7move.com/favicon.ico
Prop3=19,2
IconIndex=1
";
$filename = '网址导航.url';//如果名字中含有中文，可能转码函数mb_convert_encoding转一下码
$mime = 'application/octet-stream';
header('Content-Type: "' . $mime . '"');
header('Content-Disposition: attachment; filename="' . $filename . '"');
header("Content-Transfer-Encoding: binary");
header('Expires: 0');
header('Pragma: no-cache');
header("Content-Length: " . strlen($data));
echo $data;
?>