mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-02-02 04:33:38 +00:00
11 lines
267 B
PHP
11 lines
267 B
PHP
|
<?php
|
||
|
$url = $_SERVER['REQUEST_URI'];
|
||
|
$parts = explode('?', $url);
|
||
|
$repo = $parts[1];
|
||
|
if($repo == '') {
|
||
|
header("Location: https://github.com/NeonGamerBot-QK", true, 301);
|
||
|
} else {
|
||
|
header("Location: https://github.com/NeonGamerBot-QK/" . $repo, true, 301);
|
||
|
}
|
||
|
?>
|