You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
366 B

<?php
$location = $_SERVER['REQUEST_SCHEME'] . '://wordle.xn--rck9c.xn--tckwe/share.php?' . $_SERVER['QUERY_STRING'];
header("Location: $location", true, 307);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>307 Redirecting</title>
</head>
<body>
<h1>307 Redirecting</h1>
<p><a href="<?php echo $location; ?>"><?php echo $location; ?></a></p>
</body>
</html>