thi-hub.de/page/redirect/index.php
2023-11-12 17:35:17 +01:00

9 lines
155 B
PHP

<?php
// REDIRECT TO MAIN DOMAIN //
// status code
header("HTTP/1.1 301 Moved Permanently");
// location
header("Location: https://thi-hub.de");
?>