You can either use a refresh meta-tag or you can set window.location in javascript.
Here is the javascript solution:
<html>
<head>
<script type="text/javascript">window.location="http://msm.com";</script>
</head>
</html>
Here is the REFRESH solution:
<html>
<head>
<META http-equiv="refresh" content="1;URL=http://msm.com">
</head>
<body>
REDIRECTING YOU....
</body>
</html>