PHP header implementation does not pass the weight of the URL jump

Source: Internet
Author: User

Here are a few ways to jump:

One of the most common methods on the Web:

The code is as follows Copy Code

<?php

$url = $_get[' url '];
Header ("Location: $url");
?>

Put this code in a folder, named for example go.php

Then go.php?url= need to jump the URL, if you need to jump Taobao products such as links, because with parameters, you need to modify the code, with the following code

The code is as follows Copy Code
<?php
$qstring = $_server[' query_string '];
$url = substr ($qstring, 4);
Header ("Location: $url");
?>

In addition there are a lot of JS HTML code, and so on, do not introduce, there is a need for online search a lot.

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.