This is a test using the following META EQUIV line:
<META HTTP-EQUIV="Refresh" CONTENT="5;URL=http://en.wikipedia.org/wiki/URL_redirection">

It will activate in 5 seconds. NOTE: This might not work in Internet Explorer.

Or, you can try the 302 redirect as follows:

Simple PHP 302 redirect:

<?php
header("Location: http://en.wikipedia.org/wiki/URL_redirection");
exit();
?>

Click here to try it