如何使用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重定向回到此页面: