| Дата: Четверг, 02.08.2012, 12:38 | Сообщение # 1 |
Группа: Администраторы
Сообщений: 1530
| Редирект на PHP с указанием параметров вызова QUERY_STRING
<? $ref=$_SERVER['QUERY_STRING']; if ($ref!='') $ref='?'.$ref; header('HTTP/1.1 301 Moved Permanently'); header('Location: http://newdomain.com/'.$ref ); exit(); ?>
Простой редирект на PHP
<?php header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.newdomain.ru/newdir/newpage.htm "); exit(); ?>
|
|
| |