热门搜索

查看: 76|回复: 0

[HTML] HTML网页跳转代码大全 网页自动跳转代码【分享】

[复制链接]
发表于 2025-1-29 17:42:05 | 显示全部楼层 |阅读模式


很多新手在学习网站建设的时候,不清楚网页跳转代码怎么写?也就是从一个网页跳转到另外一个网页或网站,下面8号博客小编就给大家分享一份比较全面的网页自动跳转代码大全给大家,欢迎大家采纳!
html直接跳转网址代码 自动跳转到其他网站代码
1、HTML网页跳转代码(可隐藏跳转后网址)
  1. <html>

  2. <head>

  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

  4. <title>8号博客</title>

  5. <frameset framespacing="0" border="0" rows="0" frameborder="0">

  6. <frame name="main" src="https://www.gangko.cn/" scrolling="auto" noresize></frameset>

  7. </head>

  8. <body></body>

  9. </html>
复制代码
2、HTML网页直接跳转代码
  1. <meta http-equiv="refresh" content="0; url=https://www.gangko.cn">
复制代码
3、PHP网页跳转代码
  1. <?php

  2. header("HTTP/1.1 301 Moved Permanently");

  3. header("Location: https://www.gangko.cn");

  4. exit();

  5. ?>
复制代码
4、JavaScript网页跳转代码
  1. <script language="javascript">

  2. top.location='https://www.gangko.cn';

  3. </script>
复制代码
5、Apache(301)跳转代码
  1. Options +FollowSymLinks

  2. RewriteEngine on

  3. RewriteRule (.*) https://www.gangko.cn$1 [R=301,L]
复制代码
6、ASP网页跳转代码
  1. <%

  2. Response.Status="301 Moved Permanently"

  3. Response.AddHeader "Location","https://www.gangko.cn"

  4. Response.End

  5. %>
复制代码
7、ASP.NET(301)跳转代码
  1. <%@ Page Language="C#" %>

  2. <script runat="server">

  3. protected void Page_Load(object sender, EventArgs e)

  4. {

  5. HttpContext.Current.Response.StatusCode = 301;

  6. HttpContext.Current.Response.Status = "301 Moved Permanently";

  7. HttpContext.Current.Response.AddHeader("Location", https://www.gangko.cn);

  8. }
复制代码
8、Perl跳转代码
  1. $q = new CGI;

  2. print $q->redirect("https://www.gangko.cn");
复制代码
9、Pyton跳转代码
  1. from django import http

  2. def view(request):

  3. return http.HttpResponseRedirect('https://www.gangko.cn')
复制代码
10、Nginx 301网页跳转代码
  1. if ($host ~ '^itmemo.cn'){

  2. return 301 https://www.gangko.cn$request_uri;

  3. }
复制代码
以上网页跳转代码,大家根据自己的情况复制粘贴,修改跳转网址即可。




您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|王先生论坛 ( 辽ICP备2023008877号-1|辽公网安备21038102000391 )

GMT+8, 2025-4-3 09:31 , Processed in 0.079426 second(s), 23 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.