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.lone.top" scrolling="auto" noresize></frameset>
</head>
<body></body>
</html>
2.HTML
<meta http-equiv="refresh" content="0; url=https://www.lone.top">
3.PHP
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://www.lone.top");
exit();
?>
4.JavaScript
<script language="javascript">
top.location='https://www.lone.top';
</script>
5.Apache(301)
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) https://www.lone.top$1 [R=301,L]
6.ASP
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","https://www.lone.top"
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.lone.top);
}
</script>
8.Perl
$q = new CGI;
print $q->redirect("https://www.lone.top");
9.Pyton
from django import http
def view(request):
return http.HttpResponseRedirect('https://www.lone.top')
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容