JavaScript重定向URL

如何使用Javascript重定向URL页面。

JavaScript重定向不会返回301永久重定向状态代码。

Javscript重定向

用您要重定向到的页面的URL的重定向代码替换旧页面。

old-page.html:

<!DOCTYPE html/
<html/
<body/
<script type="text/javascript"/
    // Javascript URL redirection
    window.location.replace("http://www.mydomain.com/new-page.html");
</script/
</body/
</html/

 

搜索引擎使用301状态代码将网页排名从旧网址转移到新网址。

Javascript重定向返回http响应状态码:200 OK。

因此,JavaScript重定向不是搜索引擎友好的,最好使用其他返回状态代码的重定向方法:301永久移动。

JavaScript重定向示例

javascript-redirect-test.htm

<!DOCTYPE html/
<html/
<body/
<script type="text/javascript">
// Javascript URL redirection
window.location.replace("https://www.rapidtables.org/web/dev/javascript-redirect.htm");
</script>
</body>
</html>

 

按此链接可将javascript-redirect-test.htm重定向回此页面:

 

JavaScript重定向测试

 

 

网址重定向►

 


也可以看看

Advertising

WEB开发
快速表格