301 Weiterleitung mit php


/ Published in: PHP
Save to your folder(s)

Statt mit .htaccess kann eine 301-Weiterleitung auch über php erfolgen


Copy this code and paste it in your HTML
  1. <?php
  2. header("HTTP/1.1 301 Moved Permanently");
  3. header("Location: http://www.domain.de/der-neue-name.php");
  4. header("Connection: close");
  5. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.