PHP Simple Redirect Function.php
<?php function redirect_to($new_location) { header("Location: " . $new_location); exit; } // Usage redirect_to('http://google.com') ?>