Detailed explanation of 301 redirect jump examples based on PHP

墨辰丷
Release: 2023-03-29 10:28:01
Original
1454 people have browsed it

This article mainly introduces how to implement 301 redirection in php. Through the example code, everyone can better understand the redirection method. Friends in need can refer to the following

How to implement 301 redirection in php It's very simple. We just need to use the header to send the 301 status code, and then use the header to jump. The effect is the same as apache, iis, and nginx.

1: This method is more recommended because it can transfer all the original URLs of http://www.jb51.net to the new address of http://jb51.net

The code is as follows

Copy after login

2: Php301 redirection code for single page and multiple sites,www.jb51.net and jb51.net means 301 goes to index.php, jbzj.com means 301 goes to www.jbzj.com, otherwise it goes to the error page

The code is as follows

if(($HTTP_HOST=="www.jb51.net")or($HTTP_HOST=="jb51.net"))
{
header("HTTP/1.1 301 Moved Permanently");
Header("Location: /index.php");
}
elseif($HTTP_HOST=="jbzj.com")
{
header("HTTP/1.1 301 Moved Permanently");
Header("Location: www.jbzj.com");
}
else
{
Header("Location: /404.htm");
}
?>
Copy after login

## Attached are other jump methods

The code is as follows

//定义编码
header( 'Content-Type:text/html;charset=utf-8 ');
//Atom
header('Content-type: application/atom+xml');
//CSS
header('Content-type: text/css');
//Javascript
header('Content-type: text/javascript');
//JPEG Image
header('Content-type: image/jpeg');
//JSON
header('Content-type: application/json');
//PDF
header('Content-type: application/pdf');
//RSS
header('Content-Type: application/rss+xml; charset=ISO-8859-1');
//Text (Plain)
header('Content-type: text/plain');
//XML
header('Content-type: text/xml');
// ok
header('HTTP/1.1 200 OK');
//设置一个404头:
header('HTTP/1.1 404 Not Found');
//设置地址被永久的重定向
header('HTTP/1.1 301 Moved Permanently');
//转到一个新地址
header('Location: http://www.example.org/');
//文件延迟转向:
header('Refresh: 10; url=http://www.example.org/');
print 'You will be redirected in 10 seconds';
//当然,也可以使用html语法实现
// 
Copy after login

Please pay attention to the following points when jumping, which will help solve some problems that novices often encounter


1. There cannot be a space between location and ":", otherwise an error will occur.

#2. There cannot be any output before using the header.

#3. The PHP code after the header will also be executed.


Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

php Detailed graphic explanation of accessing oracle stored procedures

PHP implementation of reception Convert the binary stream into an image

phpImplement the method of obtaining the current url address

The above is the detailed content of Detailed explanation of 301 redirect jump examples based on PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!