Sometime, you may need to redirect your site to some other location. In such event, you may set 302 redirection (also called temporary redirection) using PHP code. Following is the sample 302 redirection using PHP:
<?php
header("Location: http://www.your-web-site.com/temp-location/index.html");
exit();
?>
Kevin