如何使用Javascript重定向URL頁面。
JavaScript重定向不會返回301永久重定向狀態代碼。
用您要重定向到的頁面的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-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重定向回此頁面: