如何使用jQuery將頁面重定向到URL。
搜索引擎使用301狀態代碼將網頁排名從舊網址轉移到新網址。
jQuery重定向返回http響應狀態碼:200 OK。
因此,jQuery重定向(類似於Javascript重定向)不是搜索引擎友好的,最好使用其他重定向方法來返回狀態代碼301 Moved Permanently。
jQuery重定向實際上是Javascript重定向。用jQuery重定向被認為是過大的,因為您可以用更少的代碼來進行純Java重定向。
用您要重定向到的頁面的URL的重定向代碼替換舊頁面。
old-page.html:
<!DOCTYPE html/
<html/
<body/
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"/</script/
<script type="text/javascript"/
//
jQuery URL redirection
$(document).ready( function() {
url = "http://www.mydomain.com/new-page.html";
$( location ).attr("href",
url);
});
</script/
</body/
</html/
jquery-redirect-test.htm
<!DOCTYPE html/
<html>
<body>
<script
src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready( function() {
url = "https://www.rapidtables.org/web/dev/jquery-redirect.htm";
$(location).attr("href", url);
});
</script>
</body>
</html>
按此鏈接從jquery-redirect-test.htm重定向回到此頁面: