2010-03-25 65 views

回答

2

我可以用谷歌浏览器和歌剧下载它,所以这可能是一个浏览器相关的问题。 总之,添加到您的.htaccess如下:

AddType application/octet-stream .w3x 
+0

非常感谢你! – 2010-03-25 19:18:55

+0

不客气,前段时间我也有同样的问题:) – 2010-03-25 19:20:43

2

,你也可以使用头:

<?php 
// outputting the file 
header('Content-type: application/octet-stream'); 

// It will be called DotA Allstars v6.67.w3x 
header('Content-Disposition: attachment; filename="DotA Allstars v6.67.w3x"'); 

// The source file 
readfile('DotA Allstars v6.67.w3x'); 
?>