php 301 permanent redirection of Apache and IIS

WBOY
Release: 2016-07-25 08:57:04
Original
981 people have browsed it
  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



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!