Заметки с перенаправлением | Notes with redirection
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html>
- <head>
- <title>Перенаправление / Redirection</title>
- </head>
- <body>
- <script>
- const база = "метки_1.0.0.html";
- const запрос = window.location.search.substring(1);
- var адрес = база;
- if (запрос.length)
- {
- адрес += "?" + запрос;
- }
- window.location.href = адрес;
- </script>
- </body>
- </html>
|