/ Published in: PHP
Expand |
Embed | Plain Text
Comments
Subscribe to comments
You need to login to post a comment.
iTony on 03/31/08
3 people have marked this snippet as a favorite
Subscribe to comments
You need to login to post a comment.
Useful variation for automatically redirecting all traffic on a staging drupal site to the live site (replace stock index.php)
$new_site = "[liveurl.com]";$new_location = "";if ($_GET["q"]) { $new_location = $_GET["q"]; }header( "HTTP/1.1 301 Moved Permanently" );header( "Status: 301 Moved Permanently" );header( "Location: http://$new_site/$new_location" );exit(0);