日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

网页重定向与跳转

發(fā)布時(shí)間:2025/3/13 编程问答 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 网页重定向与跳转 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

1. 301永久重定向

<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://wowuyu.cn"
Response.End
%>

用301做服務(wù)器轉(zhuǎn)向比較合適,,
代碼如下:
asp:
<%
Response.Status="301 Moved Permanently"

Response.AddHeader "Location", "http://www.XXXX.com/"

Response.End
%>
--------------------------------
Php:

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

header("Location:http://www.XXXX.com/);

exit();
--------------------------------------
ASP.NET:

<script runat="server">

private void Page_Load(object sender, System.EventArgs e)

{

Response.Status = "301 Moved Permanently";

Response.AddHeader("Location","http://www.XXXX.com/);

}

</script>


如果是使用.NET2.0的話,還可以用WEB.CONFIG來(lái)作URL重寫(xiě)或轉(zhuǎn)向

php的主機(jī)頭跳轉(zhuǎn)
$host = '.wowuyu.com';
$server_name = $_SERVER['SERVER_NAME'];
$bdomain = str_replace($host, '', $server_name);
if($bdomain=="www")
{
??header("Location:www.wowuyu.com");
}
else if ($bdomain == 'bbs')
{
??header("Location:bbs.wowuyu.com");
}

第一篇: JavaScript 跳轉(zhuǎn)

方法一:

<script language="javascript">
????window.location = "http://www.baidu.com";
</script>

方法二:

<script language="javascript">
????document.location = "http://www.baidu.com";
</script>

方法三: (帶進(jìn)度條)

<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>跳轉(zhuǎn)到baidu.com</title>
</head>
<body>
<form name=loading>
<P align=center><FONT face=Arial color=#0066ff size=2>loading...</FONT>
<INPUT style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bolder; PADDING-BOTTOM: 0px; COLOR: #0066ff; BORDER-TOP-style: none; PADDING-TOP: 0px; FONT-FAMILY: Arial; BORDER-RIGHT-style: none; BORDER-LEFT-style: none; BACKGROUND-COLOR: white; BORDER-BOTTOM-style: none"
size=46 name=chart>
<BR>
<INPUT style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; COLOR: #0066ff; BORDER-BOTTOM: medium none; TEXT-ALIGN: center" size=47 name=percent>
<script language="javascript">
var bar=0
var line="||"
var amount="||"
count()
function count(){
????bar=bar+2
????amount =amount + line
????document.loading.chart.value=amount
????document.loading.percent.value=bar+"%"
????if (bar<99){
????????setTimeout("count()",100);
????}else{
????????window.location = "http://www.baidu.com/";
????}
}
</script>
</P>
</form>
</body>
</html>

第二篇: 頁(yè)面跳轉(zhuǎn)

<head>
<meta http-equiv="refresh" content="10; url=http://www.baidu.com">
</head>

第三篇: 動(dòng)態(tài)頁(yè)面跳轉(zhuǎn)

方法一: PHP 跳轉(zhuǎn)

<?php
header("location: http://www.baidu.com");
?>

方法二: ASP 跳轉(zhuǎn)

<%
response.redirect "http://www.baidu.com"
%>

FYI:
<%
Dim ID1
Dim ID2
dim str
ID1 = Request("forumID")
ID2 = Request("threadID")
str="/blog/threadview.asp?forumID="& ID1 &"&threadID=" & ID2
response.redirect str
%>

?

另外還有臨時(shí)重定向,比如
1.ASP的
<%
response.redirect "old/default.asp"
%>

2.Html靜態(tài)頁(yè)面的重定向
<meta http-equiv="refresh" content="4;url=./">

3.選擇HTTP主機(jī)頭,來(lái)進(jìn)行跳轉(zhuǎn),例如index.asp文件內(nèi)容
<%
select case request.servervariables("http_host")
case "szrjw.net"
Server.Transfer("index_szrjw.asp")
case "www.szrjw.net"
Server.Transfer("index_szrjw.asp")
case else
Server.Transfer("default.asp")
end select
%>

轉(zhuǎn)載于:https://www.cnblogs.com/cyrix/articles/1706855.html

總結(jié)

以上是生活随笔為你收集整理的网页重定向与跳转的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。