Home
+ · PHP Scripts
+++ · page_redirect with php

page_redirect with php

posted in PHP Scripts | on 06.12.2006. 13:58

This php script will Redirect visitors to page/site you define.

   <?php

/**
 * Place in a blank PHP page
 */

    // Change to the URL you want to redirect to
    
$URL="http://www.example.com";

    
header ("Location: $URL");

?>