[PHP]<?php
$file_type = "text/plain";
$file_ending = "txt";
header("Content-Typefile_type");
header("Content-Type: charset=utf8");
header("Content-Disposition: attachment; filename=xxx.txt");
header("ragma: no-cache");
header("Expires: 0");
echo "--------------------------------------------------\r\n";
echo "xx\r\n";
?>[/PHP]
以上这段程序我用http://来访问是正常的,但是改用https:// 来访问是不正常的.
以上的访问是用IE进行,现在已经解决,只要去掉:header("ragma: no-cache"); 这句就可以了! |