Redirect to another page in PHP

Source: Internet
Author: User
In PHP, how does one redirect a page to another? Three methods are listed here for your reference.

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.

To redirect an HTTP header to another page, follow these steps:
<?
If (isset ($ url ))
{
Header ("HTTP/1.1 303 See Other"); [thank you, Mr. Li Ling]
Header ("Location: $ url ");
Exit;
}
?>
Note that "Localtion:" is followed by a space.

II. Mark with HTML

The HTML tag is the REFRESH tag of META, for example:
<? If (! Isset ($ url) exit;?>
<HTML>
<HEAD>
<META HTTP-EQUIV = "REFRESH" CONTENT = "5; URL = <? Echo $ url;?>
</HEAD>
<BODY>
</BODY>
</HTML>

III. Implement with scripts

Example:
<?
$ Url = "http ://";
Echo "<! -- <Script language = "JavaScript"> ";
Echo "location. href = '$ url '";
Echo "</SCRIPT> --> ";
?>
Related Article

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.