douzai6337 2014-05-28 15:02
浏览 108
已采纳

在特定时刻重定向页面[关闭]

How do I redirect to a page at a specific time?

Say wish to redirect on 31st dec 12:00AM, and people visiting after 12:00 must get directly redirected to new site.

Is this possible in jquery or PHP?

  • 写回答

2条回答 默认 最新

  • dssj88098 2014-05-28 15:47
    关注

    The PHP code will check before the page is loaded, so new visitors will be redirected, and the javascript code will check every 10 seconds after the page is loaded, so existing visitors will be redirected.

    <?php
        $date = new DateTime("December 31st, 2014 12:00AM");
        $now = time();
    
        if($now > $date->getTimestamp()) // if it's past the date
        {
            header("Location: http://google.com/");
        }
    ?>
    
    <html>
        <head>
            <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
            <script type="text/javascript">
                function checkDate()
                {
                    // Year: 2014
                    // Month: 11 is December (0-11)
                    // Day: 31st
                    var date = new Date(2014, 11, 31, 0, 0, 0, 0);
                    var now = new Date();
    
                    if(now > date) // if it's past the date
                    {
                        window.location.replace("http://google.com/");
                    }
                }          
    
                $(function() {
                    window.setInterval(checkDate, 10 * 1000); // check every ten seconds
                });
            </script>
        </head>
        <body>
        </body>
    </html>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探