You can set redirection of a page to any other url using a simple php code. In below code I will redirect to www.google.com
<?PHP header("Location: http://www.google.com"); exit; ?>
If you want to set a timer with a message like “You will be redirected to www.google.com in 5 seconds” use below code.
<?PHP header("Refresh: 5; url=http://www.google.com"); echo "You will be redirected to www.google.com in 5 seconds."; ?>