<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.
Simple PHP 302 redirect:
<?php
header("Location: http://en.wikipedia.org/wiki/URL_redirection");
exit();
?>