search
HomeBackend DevelopmentPHP TutorialTwo methods for apache+php to perfectly solve 301 redirect_PHP tutorial

Fortunately, 301 redirection can effectively solve this problem. As mentioned in this article on the Moonlight Blog,
301 redirection can promote search engine optimization effects
From the perspective of search engine optimization, 301 redirection is the most feasible way to redirect URLs. When the domain name of a website changes, the search engine will only index the new URL, and at the same time, it will transfer all the original external links under the old address to the new address, so that the website's ranking will not be affected due to the URL change. No impact at all. Similarly, when using the 301 permanent redirect command to point multiple domain names to the main domain of the website, it will not have any negative impact on the ranking of the website.

For more information about 301 redirection, you may wish to Google it. This article only introduces the implementation method!
I have written a related article before about the implementation of 301 redirection, but the solution in this article is relatively simple and can only realize the jump of the homepage. The two methods introduced in this article can perfectly realize 301 Redirect.

Method 1: Modify the .htaccess file
with the following code:

Copy the code with the following code:


RewriteEngine On
RewriteCond %{HTTP_HOST} blog.iflyhigher.tk$ [NC]
RewriteRule ^(.*)$ http://blog.jb51.net/ $1 [R=301,L]
RewriteCond %{HTTP_HOST} iflyhigher.tk$ [NC]
RewriteRule ^(.*)$ http://jb51.net/$1 [R=301,L]
RewriteCond %{HTTP_HOST} moiya.tk$ [NC]
RewriteRule ^(.*)$ http://jb51.net/$1 [R=301,L]


This blog needs to redirect three domain names, so I have to write a lot. The key code is 2 sentences
Copy code The code is as follows:

RewriteCond %{HTTP_HOST} blog.iflyhigher.tk$ [NC]
RewriteRule ^(.*)$ http://blog.jb51.net/$1 [R= 301,L]

The red domain name is the old domain name that needs to be redirected, and the green one is the domain name of the current website.
Method 2: Use PHP redirection code
Create a new index.php file, and then refer to the following code to make simple modifications according to your own redirection requirements:
Copy the code The code is as follows:

$the_host = $_SERVER['HTTP_HOST'];
$request_uri = isset($_SERVER['REQUEST_URI' ]) ? $_SERVER['REQUEST_URI'] : '';
switch ($the_host)
{
case "www.iflyhigher.tk":
case "iflyhigher.tk":
$location = "Location: http://jb51.net" . $request_uri;
break;
case "blog.iflyhigher.tk":
$location = "Location: http://blog .jb51.net" . $request_uri;
break;
case "www.moiya.tk":
case "moiya.tk":
$location = "Location: http://jb51 .net";
break;
default:
$location = "Location: http://jb51.net";
break;
}
header('HTTP/1.1 301 Moved Permanently');
header($location);
exit();
?>

If you only need to redirect one domain name, you can simplify the code into the following form:
Copy code The code is as follows:

$the_host = $_SERVER[ 'HTTP_HOST'];//Get the entered domain name
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';//Judge the following request part
if($the_host !== 'jb51.net')//jb51.net is my current domain name
{
header('HTTP/1.1 301 Moved Permanently');//Issue 301 header
header('Location: http://jb51.net'.$request_uri);//Jump to my new domain name address
exit();
}
?>

Note that the final exit() function must be written. I didn’t write it initially. As a result, it can only redirect the home page. Web pages like http://blog.iflyhigher.tk/guestbook cannot be redirected. Orientation.
Finally, some details about redirection
Since three domain names need to be redirected, before redirection, I first bind these three domain names to my server as Addon Domain, and let these three domain names be redirected. Two domain names point to the same folder. In this way, you only need to modify the .htaccess file or index.php file in this folder. If there is no .htaccess file or index.php file, just create a new one.
I hope this article will be helpful to friends who need to perform 301 redirection.
Please indicate the source for reprinting: Gevin’s blog

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323597.htmlTechArticleFortunately, 301 redirect can effectively solve this problem. As mentioned in this article on the Moonlight Blog, 301 redirects can promote search engine optimization effects. From a search engine optimization perspective, 3...
Statement
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
Dependency Injection in PHP: Avoiding Common PitfallsDependency Injection in PHP: Avoiding Common PitfallsMay 16, 2025 am 12:17 AM

DependencyInjection(DI)inPHPenhancescodeflexibilityandtestabilitybydecouplingdependencycreationfromusage.ToimplementDIeffectively:1)UseDIcontainersjudiciouslytoavoidover-engineering.2)Avoidconstructoroverloadbylimitingdependenciestothreeorfour.3)Adhe

How to Speed Up Your PHP Website: Performance TuningHow to Speed Up Your PHP Website: Performance TuningMay 16, 2025 am 12:12 AM

ToimproveyourPHPwebsite'sperformance,usethesestrategies:1)ImplementopcodecachingwithOPcachetospeedupscriptinterpretation.2)Optimizedatabasequeriesbyselectingonlynecessaryfields.3)UsecachingsystemslikeRedisorMemcachedtoreducedatabaseload.4)Applyasynch

Sending Mass Emails with PHP: Is it Possible?Sending Mass Emails with PHP: Is it Possible?May 16, 2025 am 12:10 AM

Yes,itispossibletosendmassemailswithPHP.1)UselibrarieslikePHPMailerorSwiftMailerforefficientemailsending.2)Implementdelaysbetweenemailstoavoidspamflags.3)Personalizeemailsusingdynamiccontenttoimproveengagement.4)UsequeuesystemslikeRabbitMQorRedisforb

What is the purpose of Dependency Injection in PHP?What is the purpose of Dependency Injection in PHP?May 16, 2025 am 12:10 AM

DependencyInjection(DI)inPHPisadesignpatternthatachievesInversionofControl(IoC)byallowingdependenciestobeinjectedintoclasses,enhancingmodularity,testability,andflexibility.DIdecouplesclassesfromspecificimplementations,makingcodemoremanageableandadapt

How to send an email using PHP?How to send an email using PHP?May 16, 2025 am 12:03 AM

The best ways to send emails using PHP include: 1. Use PHP's mail() function to basic sending; 2. Use PHPMailer library to send more complex HTML mail; 3. Use transactional mail services such as SendGrid to improve reliability and analysis capabilities. With these methods, you can ensure that emails not only reach the inbox, but also attract recipients.

How to calculate the total number of elements in a PHP multidimensional array?How to calculate the total number of elements in a PHP multidimensional array?May 15, 2025 pm 09:00 PM

Calculating the total number of elements in a PHP multidimensional array can be done using recursive or iterative methods. 1. The recursive method counts by traversing the array and recursively processing nested arrays. 2. The iterative method uses the stack to simulate recursion to avoid depth problems. 3. The array_walk_recursive function can also be implemented, but it requires manual counting.

What are the characteristics of do-while loops in PHP?What are the characteristics of do-while loops in PHP?May 15, 2025 pm 08:57 PM

In PHP, the characteristic of a do-while loop is to ensure that the loop body is executed at least once, and then decide whether to continue the loop based on the conditions. 1) It executes the loop body before conditional checking, suitable for scenarios where operations need to be performed at least once, such as user input verification and menu systems. 2) However, the syntax of the do-while loop can cause confusion among newbies and may add unnecessary performance overhead.

How to hash strings in PHP?How to hash strings in PHP?May 15, 2025 pm 08:54 PM

Efficient hashing strings in PHP can use the following methods: 1. Use the md5 function for fast hashing, but is not suitable for password storage. 2. Use the sha256 function to improve security. 3. Use the password_hash function to process passwords to provide the highest security and convenience.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.