下载 .exe 文件而不是 .htm 文件
Download the .exe file instead of .htm file
我的网站有一个下载 .exe 文件的选项。我在 dropbox 中上传了这个 .exe 文件,并在我的网站上使用共享 link 供用户下载文件。
I use href in my index.php page to create a link to that file:
<a href="https://www.dropbox.com/s/........./File.exe?dl=0" download="File">
但是当用户在我的网站中单击 link 时,它会下载 .htm 文件。用户需要再次单击此 .htm 文件,然后下载 .exe 文件。有时,用户在从 Dropbox 下载文件时也会收到错误 "There was an error downloading your file."。我想知道如何让 link 直接下载 .exe 文件。谢谢!!!
当您在文件路径末尾使用 ?d1=0
时,它会在预览页面中显示该文件。尝试将其更改为 ?dl=1
以强制下载。
我的网站有一个下载 .exe 文件的选项。我在 dropbox 中上传了这个 .exe 文件,并在我的网站上使用共享 link 供用户下载文件。
I use href in my index.php page to create a link to that file:
<a href="https://www.dropbox.com/s/........./File.exe?dl=0" download="File">
但是当用户在我的网站中单击 link 时,它会下载 .htm 文件。用户需要再次单击此 .htm 文件,然后下载 .exe 文件。有时,用户在从 Dropbox 下载文件时也会收到错误 "There was an error downloading your file."。我想知道如何让 link 直接下载 .exe 文件。谢谢!!!
当您在文件路径末尾使用 ?d1=0
时,它会在预览页面中显示该文件。尝试将其更改为 ?dl=1
以强制下载。