我更喜欢使用Javascript,但任何语言都可以。
我正在重新设计我的网页。它将于7月31日凌晨12:00发布。我已将该站点的两个版本放入不同的目录中。我希望主页上的这段代码能够根据日期将用户重定向到正确的页面。
示例:用户在6月29日下午5:00登录 - >重定向到/当前。用户在8月1日下午1点登录 - >重定向到/ new。
答案 0 :(得分:1)
if (time() < strtotime("06/29/2014 5:00PM"))
{
//redirect to current
header("Location : http://website.com/current");
exit;
}
elseif(time() > strtotime("01/08/2014 1:00PM")){
//redirect to new
header("Location : http://website.com/new");
exit;
}
答案 1 :(得分:1)
使用以下javascript即可完成此操作。
// For todays date;
Date.prototype.today = function () {
return ((this.getDate() < 10)?"0":"") + this.getDate() +"/"+(((this.getMonth()+1) < 10)?"0":"") + (this.getMonth()+1) +"/"+ this.getFullYear();
}
if((new Date().today()) >= "01/08/2014")
{
location.href ="new location url";
}
else
{
location.href="current location url";
}