我们有几个网站需要自动重定向到另一个网站。目前我们使用index.html和以下内容进行重定向(抱歉标签):
<html>
<head>
<meta http-equiv="refresh" content="0; URL=http://www.example.com" />
</head>
</html>
有更好的方法进行自动重定向吗?也许以编程方式使用301?我们不能使用.htaccess或类似的东西。我们在那些被重定向的网站上使用asp.net和php。
干杯
答案 0 :(得分:2)
在PHP中
<?php
// 302 redirect
header('Location: newpage.html', TRUE, 302);
?>
答案 1 :(得分:0)
使用php,您可以在标题中设置位置
标题('位置:http://www.example.com/');
答案 2 :(得分:0)
您也可以在javascript中使用此客户端
window.location="http://www.domain.com"