/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
public/404.html
27 строк
862 B
Spirzen
Path fixes
07 июн 2026, 03:17
07 июн 2026, 03:17
72d0f88
Код
Авторство
О чём код?
<!doctype html> <html lang="ru"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>IT Code Examples</title> <script> (function () { var path = location.pathname; var search = location.search; var hash = location.hash; if (path.indexOf('/it-code-examples/') === 0) { location.replace(path.replace(/^\/it-code-examples/, '') + search + hash); return; } if (path.indexOf('/it-code-examples') === 0 && path.length === '/it-code-examples'.length) { location.replace('/' + search + hash); return; } location.replace('/' + search + hash); })(); </script> </head> <body> <p><a href="/">Перейти на главную IT Code Examples</a></p> </body> </html>