Other options:
PHP header() redirect:
PHP Code:
<?php
header('Location: http://www.yoursite.com/v2/index.php');
?>
Meta refresh redirect:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang='en'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1'>
<!-- the next meta tag does the redirect -->
<meta http-equiv="refresh" content="3;url=http://www.yoursite.com/v2/index.php">
<title>Page Title</title>
</head>
<body>
<p>Our web site has moved. If you are not automatically redirected to it in
a few seconds, please click the link below, and don't forget to bookmark
the new location.</p>
<p><a href="http://www.yoursite.com/v2/index.php">Go to new location</a></p>
</body>
</html>
Bookmarks