Created
September 2, 2020 01:24
-
-
Save itisrazza/77bb9b61b9e3d2f32051bf63ca4d5db1 to your computer and use it in GitHub Desktop.
PHP Redirect Snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$somelink = "https://thegreatrazz.nz/"; | |
header("HTTP/1.1 303 See Other"); | |
header("Location: $somelink"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment