VeryHOST

VeryHOST知識庫-是專業的IDC百科知識平台

网站自动跳转代码大合集

更新時間:2023-10-28

1.HTML方式(可隐藏跳转后网址)

<html>

<head>

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

<title>VeryHOST</title>

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

<frame name="main" src="http://www.veryhost.net/" scrolling="auto" noresize></frameset>

</head>

<body></body>

</html>


2.HTML跳转

<meta http-equiv="refresh" content="0; url=http://www.veryhost.net">


3.PHP跳转

<?php

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

header("Location: http://www.veryhost.net");

exit();

?>


4.JavaScript跳转

<script language="javascript">

top.location='http://www.veryhost.net';

</script>


5.Apache(301)跳转

Options +FollowSymLinks

RewriteEngine on

RewriteRule (.*) http://www.veryhost.net$1 [R=301,L]


6.ASP跳转

<%

Response.Status="301 Moved Permanently"

Response.AddHeader "Location","http://www.veryhost.net"

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", http://www.veryhost.net);

}


8.Perl跳转

$q = new CGI;

print $q->redirect("http://www.veryhost.net");


9.Pyton跳转

from django import http

def view(request):

return http.HttpResponseRedirect('http://www.veryhost.net')