Skip to content

Instantly share code, notes, and snippets.

@robneu
Created January 10, 2014 19:51
Show Gist options
  • Select an option

  • Save robneu/8361375 to your computer and use it in GitHub Desktop.

Select an option

Save robneu/8361375 to your computer and use it in GitHub Desktop.
<?php
// Site to redirect.
$url = 'http://mydomain.com';
// Send header information.
header( 'Location: ' . $url, true, 301 );
// Done.
exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment