Forum Moderators: phranque
So you can do a 301 Permanent redirect (at page-level only, not at site-wide level) with something like this:
Status: 301 Moved Permanently
Location: http://www.example.com/
Content-type: text/html; charset=ISO-8859-1
<html>
<head>
<title>Moved</title>
</head>
<body>
<h1>301 Moved Permanently</h1>
<p><a href="http://www.example.com/">New page</a></p>
</body>
</html> Name it as "index.asis", replace your usual index.html and check your home page again - it should redirect to the new page assuming that the server accepts asis files.