作者iamstudent (java)
看板Web_Design
标题Re: 怎样让点了连结後变下载?
时间Sat Dec 4 19:29:00 2004
※ 引述《ificould (我也不过是泛泛之辈而已)》之铭言:
: 像是放文字档txt 之类的..
: 点了那个连文字档的连结後 都会自动变成浏览器开启档案...
: 有语法能让他改成下载吗? 不要直接开启
说说看你是在什麽环境
如果是纯html网页
我不知道
如果是在php我知道
可以用这个例子
先另外写一php网页
<?php
$file = "http:// localhost/file-to-download.txt"; //放你要给下载的东西
header("Content-Description: File Transfer");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($file));
@readfile($file);
?>
当你连到这页时
就会自动要求你做下载确认
如果是其他网页如 asp , jsp
一定也有相同或类似的做法
找找看吧!
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.113.214.32