Home Daily Programming PHP Knowledge How to implement page redirection in PHP? (Pictures + Videos)

How to implement page redirection in PHP? (Pictures + Videos)

Sep 27, 2018 pm 02:19 PM

This article mainly introduces to you the detailed explanation of the three methods of PHP to implement page redirection.

So what is page redirection?

In the process of website development, when we encounter web page migration or website adjustment, we need to make a redirection to prevent traffic loss. Page redirection is to redirect various network requests to other locations through various methods.

Below we will introduce to you the specific method of implementing page redirection through simple code examples.

Method 1: header redirection

<?php
$url = "http://php.cn";
if (isset($url)) {
 header("Location:$url");
} else {
 echo "没有跳转的地址!";
}
Copy after login

Here we define a $url variable, which represents the url address to be redirected to. Then use if to determine whether the redirect link exists. If it exists, jump to the new address "http://php.cn". If not, output "No jump address!".

If no jump link is defined, the return value is as follows:

How to implement page redirection in PHP? (Pictures + Videos)

If a new url is defined, it is normal The jump is as follows:

How to implement page redirection in PHP? (Pictures + Videos)

Note : The header() function sends the original HTTP header to the client. The parameter is the new url address.

Method 2: js script redirection

<?php
$url = "http://php.cn";
if (isset($url)) {
echo "<SCRIPT language= &#39;JavaScript&#39;>location.href=&#39;$url&#39;</SCRIPT>";
} else {
 echo "没有跳转的地址!";
}
Copy after login

Also first determine whether the link exists, and then here we mainly use location.href in js, that is It means jump.

Method three: html tag redirection

<?php
$url = "http://php.cn";
if (!isset($url)) {
    exit("没有跳转的地址!");
}
?>
<HTML>
<head>
    <meta HTTP-EQUIV="REFRESH" CONTENT="3; URL=&#39;<?php echo $url; ?>&#39; ">
</head>
<body>
</body>
Copy after login

Similarly, we first determine whether there is a jump link, and then mainly use

In the tag, REFRESH means defining a refresh, 3 is the refresh time, the unit is seconds, and the parameter in the URL is the refreshed file, that is, the new jump link address.

This article is a detailed introduction to the three methods of implementing page redirection in PHP. I hope it will be helpful to friends in need!

If you want to learn more about PHP, you can follow the PHP Chinese website PHP Video Tutorial. Everyone is welcome to learn and refer to it.

The above is the detailed content of How to implement page redirection in PHP? (Pictures + Videos). For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)