PHP implementation of 301 REDIRECT Code
PHP implements the 301 redirect code as follows:
Header (' http/1.1 301 Moved permanently ');//301 head issued
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 was all referenced on the other file headers.
//-----------------------------------
301 Redirects
$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 ': ";//determine the address after the part
if ($the _host!== ' www. $strDomain)//This is my previous domain name
{
/* "!==" is not exactly equal to the meaning, can also use "! =" does not equal, so that can be the previous domain name,
including Gcxirang.com, www.gcxirang.com, and the new domain I gcidc.net all redirected to www.gcidc.net*/
Header (' http/1.1 301 Moved permanently ');//301 head issued
Header (' location:http://www. ') $strDomain. $request _uri);//jump to my new domain address
}
//----------------------------------
?>
The references are as follows:
//-----------------------------------
301 Redirects
Include (' include/301.inc.php ');
?>
http://www.bkjia.com/PHPjc/847202.html www.bkjia.com true http://www.bkjia.com/PHPjc/847202.html techarticle PHP Implementation of the 301 redirect Code PHP Implementation 301 REDIRECT code as follows: Header (' http/1.1 301 Moved permanently ');//301 Header header (' Location:http://www. '). $strDomain. $request .