标签:
互联网整顿取消了URL转发规则,但是有时候我们需要将一个域名指向到另外一个域名,没有了URL转发,那怎么办呢?
比如,我们输入域名istack.xyz,回车后跳转到mayuko.cn
其实我们可以用301重定向:
1、PHP下的301重定向:
<?php
Header("HTTP/1.1 301 Moved Permanently");
Header("Location: http://www.mayuko.cn");
?>
2、ASP下的301重定向:
<%@ Language=VBScript%>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location"," http://www.mayuko.cn"
%>
3、ASP.NET下的301重定向:
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location"," http://www.mayuko.cn");
}
</script>
将文件保存为index,放在服务器根目录就可以实现域名跳转功能。
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/mayuko2012/article/details/47722689