В php разработке пока ноль. Сайт разработан на cms или не понятно, как разобраться? Нужно изменить в нем заголовок главной страницы, index. index.php :
<?php
/*
* Редиректы из старого сайта
*/
/**
* Define the interface to support localization
* @ignore
*/
define('CMS_INTERFACE', 'SITE');
/**
* Config
*/
require_once('system/config.inc.php');
/**
* Session start
*/
if (!isset($_SESSION)) {
session_start();
}
$url = $_SERVER['REQUEST_URI'];
checkRedirectLink($url);
$Site = new Site($url, 'site_structure');
$Site->cross404();
/*
* 301 Redirect: если страница была перемещена
*/
function checkRedirectLink($url){
global $DB;
if( !preg_match("/^".CMS_HOST."/", $url) ){
$url = CMS_HOST.$url;
}
$query = "
SELECT
tb_structure.id,
tb_structure.url_old,
CONCAT( tb_structure.url_new) as url_new
FROM site_structure_redirect AS tb_structure
WHERE tb_structure.url_old='".$DB->escape($url)."'
";
$redirect = $DB->query_row($query);
if($DB->rows > 0){
if($redirect['url_new'] == '/'){
$redirect['url_new'] = CMS_HOST;
}
elseif (!preg_match('~/$~', $redirect['url_new']) && strpos($redirect['url_new'], '?') == false ) {
$redirect['url_new'] = $redirect['url_new'] .'/';
}
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: http://$redirect[url_new]" );
exit;
}
}