Skip to content

Instantly share code, notes, and snippets.

@radarin
Last active February 3, 2022 21:28
Show Gist options
  • Save radarin/c9ca9e2f4d04cc626bab7feab9a486ae to your computer and use it in GitHub Desktop.
Save radarin/c9ca9e2f4d04cc626bab7feab9a486ae to your computer and use it in GitHub Desktop.
TLD einer Domain bei Aufruf ändern.
<?php
if ($_SERVER['HTTP_HOST'] == "computer-for-dummies.ch" OR $_SERVER['HTTP_HOST'] == "www.computer-for-dummies.ch")
{
?>
<meta http-equiv="refresh" content="0; URL=https://computer-for-dummies.info<?php echo $_SERVER['REQUEST_URI']?>">
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment