-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
var redirectSettingsEn = {
path: "/en/",
message: "Redirecting to English version...",
title: "Redirecting to English version..."
};
var redirectSettingsRu = {
path: "/ru/",
message: "Перенаправление на русскую версию...",
title: "Перенаправление на русскую версию..."
};
var defaultRedirectSettings = redirectSettingsRu;
// Устанавливаем заголовок страницы
document.title = defaultRedirectSettings.title;
</script>
</head>
<body>
<p id="redirectMessage"></p>
<script>
// Применяем сообщение редиректа
document.getElementById("redirectMessage").textContent = defaultRedirectSettings.message;
// Выполняем редирект
window.location.href = defaultRedirectSettings.path;
</script>
</body>
</html>