6 lines
116 B
PHP
6 lines
116 B
PHP
<?php
|
|
// Root router: Redirects all traffic to the portal repository
|
|
header("Location: portal/index.php");
|
|
exit;
|
|
?>
|