diff options
Diffstat (limited to 'redirect')
-rw-r--r-- | redirect/index.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/redirect/index.php b/redirect/index.php new file mode 100644 index 0000000..9b4597e --- /dev/null +++ b/redirect/index.php @@ -0,0 +1,9 @@ +<?php + +if ((1623504600 - time()) < 0) { + header("Location: /home"); + die(); +} else { + header("Location: /"); + die(); +}
\ No newline at end of file |