PHP redirection implementation

Source: Internet
Author: User

1. Use HTTP header information

That is, use the php header function. The HEADER function in PHP is used to send control commands that should have been specified by the HTTP protocol to the browser through the WEB server, such as declaring the type of returned information ("Context-type: xxx/xxx "), page attributes (" No cache "," Expire "), and so on.

Use the HTTP header to redirect PHP to another page as follows:

 
 
  1. <?Php 
  2. $Url="Www.baidu.com";
  3. If (! Empty ($ url ))
  4. {
  5. Header ("HTTP/1.1 303 See Other"); // This statement can be left empty
  6. Header ("Location: $ url ");
  7. }
  8. ?>

Note that "Localtion:" is followed by a space.

2. Mark PHP redirection with HTML

The HTML Tag is the REFRESH tag of META, for example:

 
 
  1. <?php 
  2. if (!empty($url))  
  3. {  
  4.     echo "<META HTTP-EQUIV="Refresh" CONTENT="0;URL=$url">";  
  5. }  
  6. ?> 

3. Use scripts to implement PHP redirection

Example:

 
 
  1. <? 
  2. if (isset($url))  
  3. {  
  4.     echo "<SCRIPT LANGUAGE="JavaScript">";  
  5.     echo "location.href='$url'";  
  6.     echo "</SCRIPT>";  
  7. }  
  8. ?> 
Or

 
 
  1. <?php echo "<script>window.location ="$url";</script>";?> 


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.