saahildcom/public/gh/index.php

11 lines
267 B
PHP
Raw Normal View History

2025-01-30 23:04:04 +00:00
<?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);
}
?>