Home php教程 php手册 php实现网站301重定向到另个域名

php实现网站301重定向到另个域名

Jun 06, 2016 pm 07:46 PM
301 php domain name accomplish website

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 用php实现网站全站301重定向到另一个域名: 什么是301转向? 301转向(又叫301跳转,301重定向)是当用户或搜索引擎向网站服务器发出浏览请求时,服务器返回的HTTP数据流中头信息(header)中的状态

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  用php实现网站全站301重定向到另一个域名:

  什么是301转向?

  301转向(又叫301跳转,301重定向)是当用户或搜索引擎向网站服务器发出浏览请求时,服务器返回的HTTP数据流中头信息(header)中的状态码的一种,表示本网页永久性转移到另一个地址。

  其它常见的状态码还包括,200表示一切正常,404网页找不到,302暂时转向,500内部请求错误,等等。

  网站做转向的方法:

  网址转向方法主要包括:301转向,302转向,JavaScript转向,PHP/ASP/CGI转向,META. REFRESH网页META刷新,等。302转向可能会有URL规范化问题。其它方法都是常用的****手法,当然不是说不可以正当地用,方法本身没有错,但被****者用多了,搜索引擎对这些可疑的转向都很敏感。何必冒险呢。

  301转向的必要性

  当网页A用301重定向转到网页B时,搜索引擎可以肯定网页A永久的改变位置,或者说实际上不存在了,搜索引擎就会把网页B当作唯一有效目标。好处是,

  第一,没有网址规范化问题

  第二,也很重要的,网页A的PR网页级别会传到网页B

  第三,收录不会因为域名更换而变化。

  实现

  

  $url="phpzixue.cn".$_SERVER["REQUEST_URI"];

  header("HTTP/1.1 301 Moved Permanently");

  header ("Location:$url");

  ?>

  以上代码就是要实现的301跳转功能。只要将以上代码放到你需要跳转的页面的头部即可,注意:以上代码前面不能有任何的输出。

  测试:

  要测试就用curl这个小软件来检查。

  #curl -I bbbb.com/index.php

  HTTP/1.0 301 Moved Permanently

  Date: Tue, 06 May 2008 06:27:39 GMT

  Server: apache

  Location:phpzixue.cn/index.php

  如见到上面的HTTP/1.0 301 Moved Permanently时,就表示可以了。下次只要点相关的链接,会自动转向新的链接,搜索引擎也会自动更新成新的链接

php实现网站301重定向到另个域名

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles