全网最全的HTML网页跳转代码大全 网页自动跳转代码

很多新手在学习网站建设的时候,不清楚网页跳转代码怎么写?也就是从一个网页跳转到另外一个网页或网站,下面IT备忘录小编就给大家分享一份比较全面的网页自动跳转代码大全给大家,欢迎大家采纳!

html直接跳转网址代码 自动跳转到其他网站代码

1、HTML网页跳转代码(可隐藏跳转后网址)

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>壹资源网</title>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="https://www.iezyw.com/" scrolling="auto" noresize></frameset>
</head>
<body></body>
</html>

2、HTML网页直接跳转代码

<meta http-equiv="refresh" content="0; url=https://www.iezyw.com">

3、PHP网页跳转代码

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://www.iezyw.com");
exit();
?>

4、JavaScript网页跳转代码

<script language="javascript">
top.location='https://www.iezyw.com';
</script>

5、Apache(301)跳转代码

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) https://www.iezyw.com$1 [R=301,L]

6、ASP网页跳转代码

<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","https://www.iezyw.com"
Response.End
%>

7、ASP.NET(301)跳转代码

<%@ Page Language="C#" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
HttpContext.Current.Response.StatusCode = 301;
HttpContext.Current.Response.Status = "301 Moved Permanently";
HttpContext.Current.Response.AddHeader("Location", https://www.iezyw.com);
}

8、Perl跳转代码

$q = new CGI;
print $q->redirect("https://www.iezyw.com");

9、Pyton跳转代码

from django import http
def view(request):
return http.HttpResponseRedirect('https://www.iezyw.com')

10、Nginx 301网页跳转代码

if ($host ~ '^iezyw.com'){
return 301 https://www.iezyw.com$request_uri;
}

以上是HTML最全网页跳转代码,大家根据自己的情况复制粘贴使用,只需要修改跳转网址即可。

免责声明

1. 本站所有资源来源于网络,如有侵权请联系站长!

2. 如有链接失效或无法下载,请联系本站站长处理!

3. 如遇到解压密码不正确,无法解压的请联系本站站长处理!

4. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!

5. 不得使用于非法商业用途,不得违反国家法律。否则一切后果自负!

6. 本站所收取的费用仅是收集整理费用,并非售卖费用,版权争议与本站无关!

7. 本站提供的源码、模板、插件、软件等其他资源,都不包含技术服务请大家谅解!

8. 本站站长邮箱:[email protected]