在服务器中301与302对于搜索引擎来讲一个是永久的跳新的地址了,一个是告诉你暂时到了一个新地址了,那么我们在php中怎么实现301永久重定向和302临时重定向呢,下面我们一起来看看方法的实现程序.
实现重定向的原理很简单,就是Web服务器返回个HTTP header给浏访问者,PHP发送HTTP header这个功能是由header()函数来实现的,301,302,404 这些状态码是在HTTP协议中约定好的,所以不用打破沙锅问"为什么是301而不是3001”,扯多了,回到正题.
PHP 301重定向,代码如下:
header('HTTP/1.1 301 Moved Permanently'); Header( "Location: http://www.phprm.com/" ); exit();
//或者如下代码
<?php //301永久重定向 $http_protocol = $_SERVER['SERVER_PROTOCOL']; //http协议版本 //如果是其他协议,则默认为HTTP/1.0 if ( 'HTTP/1.1' != $http_protocol && 'HTTP/1.0' != $http_protocol ) $http_protocol = 'HTTP/1.0'; //响应301状态码 header("$http_protocol 301 Moved Permanently"); //指定重定向的URL $new_url = 'http://www.phprm.com/'; header("Location:$new_url"); ?>
PHP 302重定向,代码如下:
header("Location: http://www.phprm.com/"); exit();
顺到把PHP 404错误也附带上,代码如下:
header("HTTP/1.1 404 Not Found"); exit();
这里关于php 301与302重定向就讲到了这里了,下面附一下apache做法,例:
APACHE代码如下:
Redirect 301 /old/old.htm http://www.phprm.com/new.htm Redirect permanent /one http://phprm.com/two RedirectMatch 301 (.*).gif$ http://www.phprm.com/images/$1.jpg
使用mod_rewrite重写URL方式
APACHE代码如下:
Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^phprm.com RewriteRule ^(.*)$ http://www.phprm.com/$1 [R=permanent,L]
关于apache htaccess这里就不介绍人了与mod_rewrite重写URL方式几乎是完全一样.
永久地址:
转载随意~请带上教程地址吧^^

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
