Виды редиректов
October 11th, 2006 by mescalito
302 Редирект
302 редирект через .htaccess файл
Redirecting a page
Redirect /file-name.html http://www.domain.com/temporary-directory/temporary-file-name.html
Redirecting a directory
Redirect /directory http://www.domain.com/temporary-directory/
Redirecting an entire site
Redirect / http://www.temporary-domain.com/
302 редирект в серверных скриптах
Redirecting a page in PHP
< ?php
header("Location: http://www.domain.com/temporary-address/temporary-file-name.html");
exit();
?>
301 Редирект
301 редирект через .htaccess файл
Moving a page
RedirectPermanent /old-file-name.html http://www.domain.ru/new-directory/new-file-name.html
Moving a directory
RedirectPermanent /old-directory http://www.domain.ru/new-directory/
Moving an entire site
RedirectPermanent / http://www.domain.ru/
301 редирект в серверных скриптах
Например в PHP, Perl или ASP.
Moving a page in PHP
< ?php
header("Status: 301 Moved Permanently", false, 301);
header("Location: http://www.domain.ru/new-directory/new-file-name.html");
exit();
?>





















