PHP implements the 301 redirect code

Source: Internet
Author: User
Tags php file

PHP implements the 301 redirect code as follows:

Header (' http/1.1 moved Permanently ');/Send 301 Head

Header (' location:http://www. ') $strDomain. $request _uri);//jump to my new domain address

I wrote 301 code with the 301.inc.php file, and it's all on the head of the other file.

  

//-----------------------------------

301 redirect

$strDomain = "chinawecan.com";

$the _host = $_server[' http_host ']; Get access to the domain name you entered

$request _uri = isset ($_server[' Request_uri '))? $_server[' Request_uri ']: "//To determine the back part of the address

if ($the _host!== ' www. ') $strDomain)//This is my previous domain name.

{

/* "!==" is not exactly equal to the meaning, can also use "!=" is not equal to, so that you can put the previous domain name,

including Gcxirang.com, www.gcxirang.com, and the new domain name I gcidc.net all redirected to www.gcidc.net*/

Header (' http/1.1 moved Permanently ');/Send 301 Head

Header (' location:http://www. ') $strDomain. $request _uri);//jump to my new domain address

}

//----------------------------------

?>

The reference is as follows:

  

//-----------------------------------

301 redirect

Include (' include/301.inc.php ');

?>

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.