<?php
// 301 Moved Permanently -перемещено навсегда
header(«Location: /foo.php»,TRUE,301);

// 302 Found – найдено (по умолчанию)
header(«Location: /foo.php»,TRUE,302);
header(«Location: /foo.php»);

// 303 See Other – следует посмотреть другую страницу
header(«Location: /foo.php»,TRUE,303);

// 307 Temporary Redirect – временный редирект
header(«Location: /foo.php»,TRUE,307);
?>

Искал инфу по редиректам в php. Пишу больше для себя, чтобы не забыть.

© 2012 Мой Блог Suffusion theme by Sayontan Sinha