最近我更改了我的网站网址,当有人在Google上搜索我的网站时,当他们点击它时会显示旧网址,显示404错误。有没有可能在点击旧网址时将旧网址重定向到新网址。
答案 0 :(得分:0)
是的,这是可能的。请检查以下代码。
<script>
window.location = "http://www.page-2.com";
</script>
将它放在你的HTML中。
有关详细信息,请访问How to redirect to another webpage in JavaScript/jQuery?
答案 1 :(得分:0)
您应该在旧网址上创建一个新文件,该文件会返回301
(永久移动)。
例如:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.New-Website.com");
?>
答案 2 :(得分:0)
或者使用php:
<?php
header("Location: http://yoururl");
?>
答案 3 :(得分:0)
在旧网址中,您可以使用 meta 标记来路由新网址...
<META http-equiv="refresh" content="5;URL=http://www.example.com">