Creating a Web Page Download Link
Monday, July 14th, 2008If you have a file you would like to enable your visitors to download, most web servers will allow you to link directly to a download file.
<A HREF=”http://yourdomain.com/file.exe”>File</A>
If you have access to ftp, you can create a download link like this:
<A HREF=”ftp.yourdomain.com/file.zip”>File</A>
If you don’t have access to ftp, you can create a download link like this:
<A HREF=”http://yourdomain.com/file.zip”>File</A>
Instruct your visitors to hold the “shift” key down while they click on the download link.