<?php
// Define the function to transliterate a string from Latin to Cyrillic
function latin_to_cyrillic($string) {
$latin_chars = array(
'a', 'b', 'v', 'g', 'd', 'e', 'zh', 'z', 'i', 'y', 'k', 'l', 'm', 'n', 'o', 'p', 'r', 's', 't', 'u', 'f', 'h', 'ts', 'ch', 'sh', 'sht', 'y', 'a', 'i', 'y', 'e', 'u', 'o', 'A', 'B', 'V', 'G', 'D', 'E', 'Zh', 'Z', 'I', 'Y', 'K', 'L', 'M', 'N', 'O', 'P', 'R', 'S', 'T', 'U', 'F', 'H', 'Ts', 'Ch', 'Sh', 'Sht', 'Y', 'A', 'I', 'Y', 'E', 'U', 'O'
);
$cyrillic_chars = array(
'а', 'б', 'в', 'г', 'д', 'е', 'ж', 'з', 'и', 'ы', 'к', 'л', 'м', 'н', 'о', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ', 'ъ', 'ь', 'ю', 'я', 'й', 'А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ж', 'З', 'И', 'Й', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', 'Т', 'У', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ', 'Ъ', 'Ь', 'Ю', 'Я', 'Ы'
);
return str_replace($latin_chars, $cyrillic_chars, $string);
}
// Parse the URL into its parts
$url = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$parts = parse_url($url);
// Transliterate each part of the URL
$scheme = latin_to_cyrillic($parts['scheme']);
$host = latin_to_cyrillic($parts['host']);
$path = latin_to_cyrillic($parts['path']);
$query = latin_to_cyrillic($parts['query']);
// Remove the slash and dots from the path and replace them with hyphens
$path = str_replace(array('/', '.','-'), ' ', $path);
// Assemble the transliterated URL
$cyrillic_url = "$scheme $host $path $query";
// Output the transliterated URL
echo $cyrillic_url;
?>