thi-hub.de/page/redirect/index.php

9 lines
155 B
PHP
Raw Normal View History

2023-11-12 17:35:17 +01:00
<?php
// REDIRECT TO MAIN DOMAIN //
// status code
header("HTTP/1.1 301 Moved Permanently");
// location
header("Location: https://thi-hub.de");
?>