网站编辑中,很多时候会有跳转页面的需求,这里提供php和asp跳转的简单示例
PHP程序301跳转示例:
<?php
$target_host = "目标地址";
$the_host = $_SERVER['HTTP_HOST'];
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; //正常方式
//$request_uri = $_SERVER['HTTP_X_REWRITE_URL']; //伪静态方式
if($the_host !== $target_host)
{
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://'.$target_host.$request_uri);
}
?>
ASP程序301跳转示例:
<%
Dim the_host,target_host,request_uri
target_host="目标地址"
the_host=Request.ServerVariables("HTTP_HOST")
request_uri=Request.ServerVariables("URL") &"?"& Request.ServerVariables("Query_String") '正常方式
'request_uri=Request.ServerVariables("HTTP_X_REWRITE_URL") '伪静态方式
if the_host <> target_host then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://"&target_host&request_uri
end if
%>
» 本文链接地址:https://blog.mydns.vip/1418.html
最新评论
麻烦发下检测工具
让我下载
非常好