Redirect Page

How do I set up a www redirect page?

The following file would redirect the page to the http://www.cs.stonybrook.edu without waiting.

The argument content="0;URL=http://www.cs.stonybrook.edu">
where "0" is number of seconds to wait before the redirect and "URL" is the page you want to be redirected to.

<html>
<head>
<meta http-equiv="REFRESH"
content="0;URL=http://www.cs.stonybrook.edu">
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">

<title></title>
</head>

<body>
You will be redirected to another location.
</body>
</html>