Forum Moderators: open
.asis files, which allow you to add server headers such as a 301 redirect in the document. I believe Angelfire and Tripod.com both allow this method. [httpd.apache.org...]
Of course, if you need to redirect a file with an .html extension or similar when using a free host, you are still forced to use a meta refresh or Javascript.
<html>
<head>
<title>Blue Widgets</title>
<script language="Javascript" type="text/javascript">
location.replace("/path/to/new/");
</script>
<meta http-equiv="refresh" content="0;url=/path/to/new/">
</head>
<body>
Continue to <a href="/path/to/new/">Blue Widgets</a>.
</body>
</html>