Phpdownload. php implementation code jump to the download file (response. redirect) _ PHP Tutorial

Source: Internet
Author: User
The phpdownload. php implementation code jumps to the download file (response. redirect ). Jump to the core code implementation. The copy code is as follows: if (isset ($ link) {Header (HTTP1.1303SeeOther); Header (Location: $ link); exit ;}the following is a description of a foreign article. Jump to the core code implementation.

The code is as follows:


If (isset ($ link ))
{
Header ("HTTP/1.1 303 See Other ");
Header ("Location: $ link ");
Exit;
}




The following is a description of a foreign article.
Hey Chris:
On Wed, Jan 26,200 5 at 12:28:19 PM-0500, csnyder wrote:
>
> > // Process form
>...
> // Redirect to results page
> Header ('http/1.1 303 See Other ');
> Header ('Location: result.html ');
> Exit ('form submitted, continue .');
>?>
Good point. But some feedback here. The optimail syntax is:
// Process form
//...
// Redirect to results page
Header ('status: 303 See Other ');
Header ('Location: http://www.jb51.net/result.html ');
?>
Here's why...
Using "Status:" in the header is better because the resulting headers from
Apache are more correct:
HTTP/1.1 303 See Other
Instead
HTTP/1.1 303
Additionally, one doesn' t really know which version of HTTP is being used,
So why potentially cause problems by trying to guess.
The specs say location headers must have a complete URI in them, not just
The path.
Lastly, you don't want any output after the location header.
Later,
-- Dan

Bytes. The code is as follows: if (isset ($ link) {Header ("HTTP/1.1 303 See Other"); Header ("Location: $ link"); exit ;} the following is a description of a foreign 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.