DataLife Engine > Версия для печати > Убираем дубли первой страницы

Реализация взята от Алаева:

открываем файл /engine/engine.php

Найти:

if (($subaction == "showfull" or $subaction == "addcomment") and ((! isset ( $category ) or $category == ""))) {

Выше добавить:

if ( ($config['allow_alt_url'] == "yes") && (intval($_GET['cstart']) == 1) && (strpos($_SERVER['REQUEST_URI'], '/page/1') !== false) ) {
                $first_page_url = str_replace ( "/page/1", "", $_SERVER['REQUEST_URI'] );
                header("HTTP/1.0 301 Moved Permanently");
                header("Location: $first_page_url");
                die("Redirect");
}

Проверено на 10.1.

Вернуться назад