Internet reorganization canceled the URL forwarding rules, but sometimes we need to point a domain name to another domain name, without the URL forwarding, what to do?
For example, we enter the domain name ISTACK.XYZ, enter after the jump to mayuko.cn
We can actually use 301 redirects:
1.301 Redirects under PHP:
<?php
Header ("http/1.1 301 Moved permanently");
Header ("location:http://www.mayuko.cn");
?>
2.301 redirects under asp:
<%@ language=vbscript%>
<%
response.status= "301 Moved Permanently"
Response.AddHeader "Location", "http://www.mayuko.cn"
%>
3, ASP. NET 301 redirects:
<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>
Save the file as index and place it on the server root to implement the domain name jump function.
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Non-URL forwarding for domain name jumps