Home >Backend Development >PHP Tutorial >php 301 permanent redirection of Apache and IIS

php 301 permanent redirection of Apache and IIS

WBOY
WBOYOriginal
2016-07-25 08:57:041003browse
  1. header("HTTP/1.1 301 Moved Permanently");
  2. header("Location: http://www.example.com/newpage/");
  3. exit;
  4. ?>
Copy code

PHP 301 for IIS:

  1. header("Status: 301 Moved Permanently");
  2. header("Location: http://www.example.com/newpage/");
  3. exit;
  4. ?>
Copy code

For more php 301 redirect articles, please refer to: Configuration code for htaccess 301 redirection in the secondary directory Example analysis of apache php 301 redirect How to implement php 301 redirect How to implement 301 redirect in php



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