There is more than one method. The simplest is the refresh method which you add to the <HEAD> </HEAD> section of your old pages (recreate them if they've been deleted as follows):
Code:
<HTML>
<HEAD>
<META HTTP-EQUIV="REFRESH" CONTENT="10; URL=http://www.yourdomain.com/newpage.html">
<TITLE>This page has moved</TITLE>
</head>
<BODY>
This Page Has Moved
Please update your bookmarks to
<A href="http://www.yourdomain.com/newpage.html">
http://www.yourdomain.com/newpage.html</A>
</p>
</body>
</html>
Don't make the value less than 10 seconds!
Alternatively, if your host allows an .htaccess file, you can use a 301 redirect there:
or
Or, if you can use PHP:
Code:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.newdomain.com/page.html");
exit();
?>
Or, if you're on a Windows server, use ASP:
Code:
<%
response.Status = "301 Moved Permanently"
response.addheader "location", "http://www.newdomain.com/page.html"
response.end
%>