Заметки с перенаправлением | 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.

19 lines
505B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Перенаправление / Redirection</title>
  5. </head>
  6. <body>
  7. <script>
  8. const база = "метки_1.0.0.html";
  9. const запрос = window.location.search.substring(1);
  10. var адрес = база;
  11. if (запрос.length)
  12. {
  13. адрес += "?" + запрос;
  14. }
  15. window.location.href = адрес;
  16. </script>
  17. </body>
  18. </html>