求一个HTML网页重定向代码。

求一个HTML网页重定向代码。

谢谢!
是配置服务器吗?
http://man.chinaunix.net/newsoft ... te.html#rewritebase
他要俄是http代码,而不是apache代码。。。
1.javascript:
<script language="javascript">
window.location.href="aaaa.php";
</script>

2.html:
<meta http-equiv="refresh" content="3;URL=aaaa">
HTML:
<meta http-equiv="refresh" content="10; url=http://www.iask.com">
其中的“10”是告诉浏览器在页面加载10秒钟后自动跳转到iask.com。

javascript:
<script language="javascript">location.replace("http://www.doumiao.net")</script>
如果要在本窗口中打开的话:self.location="url"   
如果要在新窗口中打开的话:window.open(url)