Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
if ( $conf['allow_alt_url'] == 'yes') $url = '/index.html';
else $url = '/index.php';
if ($_SERVER["REQUEST_URI"] != $url) {
header ('HTTP/1.1 301 Moved Permanently');
header('location: '.$url);
die('<a href="' . $url . '">Верная ссылка на страницу</a>');
}
if ( $conf['allow_alt_url'] == 'yes') $url = '/index.html';
else $url = '/index.php';
if ($_SERVER["REQUEST_URI"] != $url) {
header ('HTTP/1.1 301 Moved Permanently');
header('location: '.$url);
die('<a href="' . $url . '">Верная ссылка на страницу</a>');
}
$url = explode('index.php', $_SERVER["REQUEST_URI");
$url = $url[0];
<?php
$requri = $_SERVER['REQUEST_URI'];
if(strstr($requri, 'index.php') !== false )
{
$url = explode('index.php', $_SERVER['REQUEST_URI']);
$url = $url[0];
if ($_SERVER["REQUEST_URI"] != $url) {
header ('HTTP/1.1 301 Moved Permanently');
header('location: '.$url);
die('<a href="' . $url . '">Верная ссылка на страницу</a>');
}}
?>