2010-03-25 66 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'); 
?>