summaryrefslogtreecommitdiff
path: root/redirect/index.php
blob: 9b4597e983ba78efdcdd82b02ea697090fbd1e1b (plain)
1
2
3
4
5
6
7
8
9
<?php

if ((1623504600 - time()) < 0) {
    header("Location: /home");
    die();
} else {
    header("Location: /");
    die();
}