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.
Чисто в теории... Писал на скорую руку, может работать криво...RewriteRule ^/cat/dirictory/(.*).html$ ^/cat/dirеctory/$1.html [L,R=301]
$url = "верная ссылка"; // Пример: /blog.html
if ($_SERVER["REQUEST_URI"] != $url) {
header ('HTTP/1.1 301 Moved Permanently');
header('location: '.$url);
die('<a href="' . $url . '">Верная ссылка на страницу</a>');
}