我很兴奋如何做一个类似premiumpixels.com的下载页面
示例- http://www.premiumpixels.com/freebies/custom-audio-player-skin-psd/
如果我们点击"下载":
1)页面重新加载到url如premiumpixels.com/download/?file=audio-player
2)超时后开始下载
3)从cdn.premiumpixels.com/uploads/audio-player.zip
下载文件
我如何做相同的?它是如何在php上完成的?
另外,我想发送一些mysql请求时,下载页面打开,更新文件下载统计。
谢谢。
使用Javascript的setTimeout
函数,然后将浏览器重定向到下载资源
看起来这是网站使用的来源:
jQuery(function () {
// get the GET variables
var theme = getUrlVars();
var downloadLink = 'http://cdn.premiumpixels.com/uploads/' + theme['file'] + '.zip';
if(theme['file'])
{
jQuery('#downloadLink').attr('href', downloadLink);
delayedDownload();
}
function delayedDownload()
{
timeoutID = window.setTimeout(downloadTheme, 1000);
}
function downloadTheme()
{
window.location.replace(downloadLink);
//window.open(downloadLink,'','menubar=1,location=1,toolbar=1,width=600,height=500');
}
// Read a page's GET URL variables and return them as an associative array.
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
});
1。用户点击链接—例如download.php?id=my-app-id
;
2)。在download。php中,你可以进行mysql的更新
3)。然后重定向到实际的下载文件:header("Location: /folder/for/downloadcontent/download.zip");
对于SEO友好的url使用RewriteRule
在.htaccess
文件
或者,您可以使用MIME/Multipart类型的响应,在第一部分中发送HTML页面,在另一部分中发送文件,然后您根本不需要使用javascript:)
或者在页眉中刷新一个简单的元标签:
<meta http-equiv="refresh" content="5; url=http://example.com/myfile">