下载不与exe一起使用的HTML链接

时间:2014-03-04 22:25:24

标签: html file hyperlink download exe

好的,我必须在我的网站上为文件设置下载链接。但它永远不会工作。

我试过这个:

<a href="http://sitename.tk/downloads/exe/filename.exe" target="_blank"><button type="button">Download</button></a>

所有输出都是空白页。

我也尝试过:

<a href="http://sitename.tk/downloads/exe/filename.exe" download><button type="button">Download</button></a>

和: 当我尝试最后两个时,它说文件未在www.sitename.tk/download/exe/filename.exe(/strong>

找到
<a href="http://sitename.tk/downloads/exe/filename.exe" download="filename.exe"><button type="button">Download</button></a>

<a href="http://sitename.tk/downloads/exe/filename.exe" target="_blank" download="filename.exe"><button type="button">Download</button></a>

有人可以帮助我。我已经编程html多年了,我不能让这个简单易用。提前谢谢

更新 我已尝试使用mp3和mp4文件类型,这些工作正常 为此,我做到了这一点:

<a href="sitename.tk/downloads/mp3/song.mp3" download="mp3"><button type="button"></button></a>

但如果我这样做:

<a href="http://www.sitename.tk/downloads/exe/filename.exe" download="exe"><button type="button"></button></a>

不起作用

1 个答案:

答案 0 :(得分:1)

您应该使用http://之前,否则客户端浏览器会将sitename.tk解释为子文件夹。请尝试使用此:
<a href="http://sitename.tk/downloads/exe/filename.exe" target="_blank"><button type="button">Download</button></a>