Non-URL forwarding for domain name jumps

Source: Internet
Author: User
Tags url forwarding

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.